Transfer clients from one status to another status

POST /api/v1/client-status/{clientStatus}/transfer-clients

Headers

Path parameters

application/json

Body Required

Responses

POST /api/v1/client-status/{clientStatus}/transfer-clients
curl \
 -X POST https://api.plannrcrm.com/api/v1/client-status/clientStatus/transfer-clients \
 -H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
 -H "Content-Type: application/json" \
 -H "Accept: application/json" \
 -H "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
 -d '{"new_status_uuid":"c84ccac6-e61a-436b-aa5a-d819b49a57ca"}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}

# Payload
{
  "new_status_uuid": "c84ccac6-e61a-436b-aa5a-d819b49a57ca"
}