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":["6f565f09-91cd-4e06-8151-dd1f4eef8f1e","04275496-033b-4ed0-b4ef-f96067463fcd","9ec03acd-cb20-494f-a412-3f74446be014"]}'
Request examples
{
  "order": [
    "6f565f09-91cd-4e06-8151-dd1f4eef8f1e",
    "04275496-033b-4ed0-b4ef-f96067463fcd",
    "9ec03acd-cb20-494f-a412-3f74446be014"
  ]
}
Response examples (204)
{}