Reorder Life Stages for a firm 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/life-stage/reorder
application/json

Body

  • order array[string(uuid)] Required

    An ordered array of Expenditure Life Stage UUID’s.

Responses

  • 204 application/json
POST /api/v1/life-stage/reorder
curl \
 --request POST 'https://api.plannrcrm.com/api/v1/life-stage/reorder' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"order":["2a87cd32-a33e-4997-af7e-5541b544a630","fda01c47-cb78-4022-9c03-25b2b92adf75","978df7f9-cfe8-4156-8371-b3e692e3b27d"]}'
Request examples
{
  "order": [
    "2a87cd32-a33e-4997-af7e-5541b544a630",
    "fda01c47-cb78-4022-9c03-25b2b92adf75",
    "978df7f9-cfe8-4156-8371-b3e692e3b27d"
  ]
}
Response examples (204)
{}