Transfer clients from one status to another status Run in API Explorer
Ask AI
POST
/api/v1/client-status/{clientStatus}/transfer-clients
curl \
--request POST 'https://api.plannrcrm.com/api/v1/client-status/architecto/transfer-clients' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
--data '{"new_status_uuid":"99a687a2-773d-4d47-97e0-ef4ab6d71f73"}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"new_status_uuid": "99a687a2-773d-4d47-97e0-ef4ab6d71f73"
}
Response examples (204)
{}
Response examples (422)
{
"message": "The given data was invalid.",
"errors": {
"field": [
"The field is invalid."
]
}
}