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":["65fa01fc-7296-4ef0-b779-09e9fc7e99a6","473e0e6d-1e48-4fcf-875c-c5e010df4451","3fbd0ca3-4821-4926-866d-a4b37cd05b5c"]}'
Request examples
{
  "order": [
    "65fa01fc-7296-4ef0-b779-09e9fc7e99a6",
    "473e0e6d-1e48-4fcf-875c-c5e010df4451",
    "3fbd0ca3-4821-4926-866d-a4b37cd05b5c"
  ]
}
Response examples (204)
{}