curl --request PUT \
--url https://api.bizzy.ai/v1/lists/{id}/contacts \
--header 'Authorization: Bearer <token>'{
"success": true,
"message": "Successfully added 99 contacts to the list",
"failed": [
{
"companyIdentifier": {
"country": "BE",
"companyNumber": "770493071",
},
"contacts": [ // Example error contacts
{
"contactIdentifier": {
"contactId": "123",
},
"message": "Contact not found"
}
],
"message": null
},
{
"companyIdentifier": { // Example error company
"country": "BE",
"companyNumber": "123",
},
"contacts": null,
"message": "Company not found"
}
]
}
curl --request PUT \
--url https://api.bizzy.ai/v1/lists/{id}/contacts \
--header 'Authorization: Bearer <token>'{
"success": true,
"message": "Successfully added 99 contacts to the list",
"failed": [
{
"companyIdentifier": {
"country": "BE",
"companyNumber": "770493071",
},
"contacts": [ // Example error contacts
{
"contactIdentifier": {
"contactId": "123",
},
"message": "Contact not found"
}
],
"message": null
},
{
"companyIdentifier": { // Example error company
"country": "BE",
"companyNumber": "123",
},
"contacts": null,
"message": "Company not found"
}
]
}
Show companyContact properties
{
"success": true,
"message": "Successfully added 99 contacts to the list",
"failed": [
{
"companyIdentifier": {
"country": "BE",
"companyNumber": "770493071",
},
"contacts": [ // Example error contacts
{
"contactIdentifier": {
"contactId": "123",
},
"message": "Contact not found"
}
],
"message": null
},
{
"companyIdentifier": { // Example error company
"country": "BE",
"companyNumber": "123",
},
"contacts": null,
"message": "Company not found"
}
]
}
Was this page helpful?