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":["7d35f521-9e2d-47d6-b917-5a29653c246e","a4512ba2-ddf2-404d-81a4-0ee1389147f1","8b26cb6c-2230-40d4-868d-3c374629c5a4"]}'
Request examples
{
  "order": [
    "7d35f521-9e2d-47d6-b917-5a29653c246e",
    "a4512ba2-ddf2-404d-81a4-0ee1389147f1",
    "8b26cb6c-2230-40d4-868d-3c374629c5a4"
  ]
}
Response examples (204)
{}