Transfer clients from one status to another status
Headers
-
Content-Type
string -
Accept
string -
X-PLANNR-ACCOUNT-UUID
string
Path parameters
-
clientStatus
string Required
Body
Required
-
new_status_uuid
string Required The UUID of the new status to be assigned.
POST
/api/v1/client-status/{clientStatus}/transfer-clients
curl \
--request POST 'https://api.plannrcrm.com/api/v1/client-status/clientStatus/transfer-clients' \
--header "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
--data '{"new_status_uuid":"c6c3b2af-5c6e-4813-b64f-c2c9d9ec7ca2"}'
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": "c6c3b2af-5c6e-4813-b64f-c2c9d9ec7ca2"
}