Skip to main content
PUT
/
api
/
contacts
/
bulk-update-status
Bulk update contact status
curl --request PUT \
  --url https://your-instance.example.com/api/contacts/bulk-update-status \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "contactIds": [
    "<string>"
  ],
  "status": "<string>",
  "pipelineStageId": "<string>"
}
'
{
  "message": "<string>",
  "modifiedCount": 123,
  "matchedCount": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
contactIds
string[]
required
status
string
required
pipelineStageId
string
required

Response

Bulk update completed

message
string
modifiedCount
integer
matchedCount
integer