Add/Remove Contacts From Business
POST/contacts/bulk/business
Add/Remove Contacts From Business . Passing a null businessId will remove the businessId from the contacts
Request
Version stringrequired
API Version
Available options
v3- application/json
- Body
- Example (auto)
Bodyrequired
locationIdstringrequired
Location Id
idsstring[]required
List of contact Ids to update (maximum 50)
Possible values: <= 50 characters
businessIdstringnullablerequired
Business Id to assign to contacts. Pass null to remove business association.
{
"locationId": "PX8m5VwxEbcpFlzYEPVG",
"ids": [
"IDqvFHGColiyK6jiatuz",
"pOC0uJ97VYOKH2m3fkMD"
],
"businessId": "63b7ec34ea409a9a8bd2a4ff"
}
Successful response
- application/json
- Schema
- Example (auto)
Schema
successbooleanrequired
Whether the bulk update was successful
idsstring[]required
List of contact Ids that were updated
{
"success": true,
"ids": [
"pOC0uJ97VYOKH2m3fkMD"
]
}