addBulkContactToList
Add multiple contacts to a specified list in one API call, including details like name, email, phone, address, and custom fields, for streamlined contact management.
Instructions
Add Many Contact to a list in single API
Input Schema
Name | Required | Description | Default |
---|---|---|---|
listName | Yes | ||
values | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"listName": {
"type": "string"
},
"values": {
"items": {
"additionalProperties": false,
"properties": {
"created_at": {
"type": "string"
},
"data": {
"additionalProperties": {
"anyOf": [
{
"type": "string"
},
{
"type": "number"
},
{
"type": "boolean"
},
{
"not": {}
}
]
},
"properties": {
"address1": {
"description": "Line 1 of the address of the user",
"type": "string"
},
"address2": {
"description": "Line 2 of the address of the user",
"type": "string"
},
"age": {
"description": "Age of the user in numbers",
"type": "integer"
},
"anniversary_date": {
"anyOf": [
{
"$ref": "#/properties/values/items/properties/data/properties/birthday/anyOf/0"
},
{
"$ref": "#/properties/values/items/properties/data/properties/birthday/anyOf/1"
}
],
"description": "Anniversary date (ISO format or UNIX timestamp)"
},
"birthday": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"description": "Birthdate of the user (ISO format or UNIX timestamp)"
},
"city": {
"description": "City/district/village of the user",
"type": "string"
},
"company": {
"description": "Company of the user",
"type": "string"
},
"country": {
"description": "Country of the user",
"type": "string"
},
"description": {
"description": "Description of the user",
"type": "string"
},
"designation": {
"description": "Designation of the user",
"type": "string"
},
"first_name": {
"description": "First name of the user",
"type": "string"
},
"gender": {
"description": "Gender of the user",
"type": "string"
},
"industry": {
"description": "Industry of the user",
"type": "string"
},
"last_name": {
"description": "Last name of the user",
"type": "string"
},
"name": {
"description": "Full name of the user",
"type": "string"
},
"phone": {
"description": "Primary phone number of the user",
"type": "string"
},
"postal_code": {
"description": "PIN/ZIP Code of the user",
"type": "string"
},
"state": {
"description": "State, region or province of the user",
"type": "string"
}
},
"type": "object"
},
"email": {
"type": "string"
},
"last_click": {
"$ref": "#/properties/values/items/properties/created_at"
},
"last_open": {
"$ref": "#/properties/values/items/properties/created_at"
},
"timezone": {
"pattern": "^[A-Za-z_]+(?:\\/[A-Za-z_]+(?:\\/[A-Za-z_]+)?)?$",
"type": "string"
}
},
"required": [
"email"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"listName",
"values"
],
"type": "object"
}