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>"
}
'