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
  • 422 application/json

    Validation error

    Hide response attributes Show response attributes object
    • message string Required

      A human-readable description of the error.

    • errors object

      Validation messages keyed by the field that failed.

      Hide errors attribute Show errors attribute object
      • * array[string] Additional properties
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":["1aac2462-df3b-46b3-896a-b1b791f37c86","4550e03e-15a3-406b-b8c5-087f82f4b076","bf6e6124-1ee8-446c-824a-530b8f1abbb2"]}'
Request examples
{
  "order": [
    "1aac2462-df3b-46b3-896a-b1b791f37c86",
    "4550e03e-15a3-406b-b8c5-087f82f4b076",
    "bf6e6124-1ee8-446c-824a-530b8f1abbb2"
  ]
}
Response examples (204)
{}
Response examples (422)
{
  "message": "The given data was invalid.",
  "errors": {
    "field": [
      "The field is invalid."
    ]
  }
}