curl --request PATCH \
--url https://v2-nova-api.prod.czmx.in/org/{org_id}/prospects/bulk \
--header 'Content-Type: application/json' \
--data '
{
"prospect_ids": [
"<string>"
],
"updates": {
"country": "<string>",
"custom_data": {},
"email": "<string>",
"external_id": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"list_id": "<string>",
"remove_from_list": true,
"status": "<string>",
"timezone": "<string>"
}
}
'{
"affected_ids": [
"<string>"
],
"count": 123
}Update multiple prospects with the same field values. At least one update field must be provided. Phone cannot be bulk updated.
curl --request PATCH \
--url https://v2-nova-api.prod.czmx.in/org/{org_id}/prospects/bulk \
--header 'Content-Type: application/json' \
--data '
{
"prospect_ids": [
"<string>"
],
"updates": {
"country": "<string>",
"custom_data": {},
"email": "<string>",
"external_id": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"list_id": "<string>",
"remove_from_list": true,
"status": "<string>",
"timezone": "<string>"
}
}
'{
"affected_ids": [
"<string>"
],
"count": 123
}