Transfer clients from one status to another status Run in API Explorer

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://apidocs.plannrcrm.com/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"PlannrCRM MCP server": {
  "url": "https://apidocs.plannrcrm.com/mcp"
}
Close
POST /api/v1/client-status/{clientStatus}/transfer-clients

Headers

  • X-PLANNR-ACCOUNT-UUID string

Path parameters

  • clientStatus string Required
application/json

Body

  • new_status_uuid string(uuid) Required

    The UUID of the new status to be assigned.

Responses

  • 204 application/json
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":"a5a4b791-abd2-4704-b95f-aef24bd53441"}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}

# Payload
{
  "new_status_uuid": "a5a4b791-abd2-4704-b95f-aef24bd53441"
}
Response examples (204)
{}