# sib_contacts.importcontacts: Sendinblue Package for Contacts operations that could not be mapped to a table. sib_contacts.importcontacts: Sendinblue Package for Contacts operations that could not be mapped to a table. It returns the background process ID which on completion calls the notify URL that you have set in the input. **Note**: - Any contact attribute that doesn't exist in your account will be ignored at import end.Parameters of Procedure The following parameters can be used to control the behaviour of the procedure `sib_contacts.importcontacts`. A value must be provided at all times for required parameters, but optional parameters in general do not need to have a value and the execution will default to a pre-defined behaviour. Values can be specified by position and by name. In both cases, all parameters not specified will be evaluated using their default values. Value specification by position is done by listing all values from the first to the last needed value. For example: a `begin package.procedure(value1, value2, value3); end` on a procedure with four parameters will use the default value for the fourth parameter and the specified values for the first three. Value specification by name is done by listing all values that require a value. For example with `begin package.procedure(name1 => value1, name3 => value3); end` on the same procedure will use the default values for the second and fourth parameters and the specified values for the first and third. | Name | Data Type | Required | Default Value | Documentation | |---|:---:|:---:|:---:|---| | `disableNotification` | `boolean` | ☐ | False | To disable email notification | | `emailBlacklist` | `boolean` | ☐ | False | To blacklist all the contacts for email | | `emptyContactsAttributes` | `boolean` | ☐ | False | To facilitate the choice to erase any attribute of the existing contacts with empty value. emptyContactsAttributes = true means the empty fields in your import will erase any attribute that currently contain data in Brevo, & emptyContactsAttributes = false means the empty fields will not affect your existing data ( **only available if `updateExistingContacts` set to true **) | | `fileBody` | `string` | ☐ | | **Mandatory if fileUrl and jsonBody is not defined.** CSV content to be imported. Use semicolon to separate multiple attributes. **Maximum allowed file body size is 10MB** . However we recommend a safe limit of around 8 MB to avoid the issues caused due to increase of file body size while parsing. Please use fileUrl instead to import bigger files. | | `fileUrl` | `string` | ☐ | | **Mandatory if fileBody and jsonBody is not defined.** URL of the file to be imported (**no local file**). Possible file formats: #### .txt, .csv, .json | | `folderId` | `int64` | ☐ | | Id of the folder where this new list shall be created. **Mandatory if listName is not empty** | | `listName` | `string` | ☐ | | List with listName will be created first and users will be imported in it. **Mandatory if listIds is empty**. | | `notifyUrl` | `string` | ☐ | | URL that will be called once the import process is finished. For reference, https://help.brevo.com/hc/en-us/articles/360007666479 | | `smsBlacklist` | `boolean` | ☐ | False | To blacklist all the contacts for sms | | `updateExistingContacts` | `boolean` | ☐ | True | To facilitate the choice to update the existing contacts |