Reorder Life Stage Sections 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/expenditure-structure/section/reorder
application/json

Body

  • order array[string(uuid)] Required

    An ordered array of Expenditure Life Stage Section UUID’s.

Responses

  • 204 application/json
POST /api/v1/expenditure-structure/section/reorder
curl \
 --request POST 'https://api.plannrcrm.com/api/v1/expenditure-structure/section/reorder' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"order":["36cd74e4-8abf-4a1e-aa60-6207d8fe3fc4","a3746791-325e-4a97-aed0-18cccde7ca6c","c4faf4dc-9541-46ee-9cee-06bcf660bff0"]}'
Request examples
{
  "order": [
    "36cd74e4-8abf-4a1e-aa60-6207d8fe3fc4",
    "a3746791-325e-4a97-aed0-18cccde7ca6c",
    "c4faf4dc-9541-46ee-9cee-06bcf660bff0"
  ]
}
Response examples (204)
{}