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":["b437b8f8-c3fc-4bef-9b01-a3fa7acc565e","b3977219-4033-4294-8b10-449a2825b420","0ecfd7a0-9b8d-4ff0-9346-74cc42409c0a"]}'
Request examples
{
  "order": [
    "b437b8f8-c3fc-4bef-9b01-a3fa7acc565e",
    "b3977219-4033-4294-8b10-449a2825b420",
    "0ecfd7a0-9b8d-4ff0-9346-74cc42409c0a"
  ]
}
Response examples (204)
{}