Reorder Life Stage Section Fields 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/field/reorder
application/json

Body

  • order array[string(uuid)] Required

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

Responses

  • 204 application/json
POST /api/v1/expenditure-structure/field/reorder
curl \
 --request POST 'https://api.plannrcrm.com/api/v1/expenditure-structure/field/reorder' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"order":["e7cf75e0-58e0-43e5-8a91-f916fe7c1ca8","e6af0d32-6d5c-4cdf-b251-e6041a91e891","ec65bf2b-a57e-4b69-8c29-786ebfff84a7"]}'
Request examples
{
  "order": [
    "e7cf75e0-58e0-43e5-8a91-f916fe7c1ca8",
    "e6af0d32-6d5c-4cdf-b251-e6041a91e891",
    "ec65bf2b-a57e-4b69-8c29-786ebfff84a7"
  ]
}
Response examples (204)
{}