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":["b4378d8a-bad4-4df6-8704-4a4a30f6704f","651177ed-f7af-4316-ae41-1d0b88fcd605","b2ac437b-edb6-4ac4-b223-aa54a3eff409"]}'
Request examples
{
  "order": [
    "b4378d8a-bad4-4df6-8704-4a4a30f6704f",
    "651177ed-f7af-4316-ae41-1d0b88fcd605",
    "b2ac437b-edb6-4ac4-b223-aa54a3eff409"
  ]
}
Response examples (204)
{}