Update the custom expenditures setting across all uuids 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/set-custom-expenditure
application/json

Body

  • section_uuids array[string(uuid)] Required

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

  • has_custom_expenditures boolean

    Whether the Expenditure Life Stage Section accepts custom expenditures.

Responses

  • 204 application/json
POST /api/v1/expenditure-structure/section/set-custom-expenditure
curl \
 --request POST 'https://api.plannrcrm.com/api/v1/expenditure-structure/section/set-custom-expenditure' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"section_uuids":["75791b43-f14f-40cb-b148-2524d7a04f83","f414660d-33ee-4f9c-bb69-2356071db13f","59f90223-66e4-44e7-a956-97dc6bc97848"],"has_custom_expenditures":true}'
Request examples
{
  "section_uuids": [
    "75791b43-f14f-40cb-b148-2524d7a04f83",
    "f414660d-33ee-4f9c-bb69-2356071db13f",
    "59f90223-66e4-44e7-a956-97dc6bc97848"
  ],
  "has_custom_expenditures": true
}
Response examples (204)
{}