Create or Update an Expenditure

POST /api/v1/client/{client_uuid}/expenditure/{lifeStage_uuid}/{lifeStageField_uuid}

This endpoint creates an individual expenditure for a client.

Headers

Path parameters

application/json

Body Required

Responses

POST /api/v1/client/{client_uuid}/expenditure/{lifeStage_uuid}/{lifeStageField_uuid}
curl \
 --request POST 'https://api.plannrcrm.com/api/v1/client/f6aa1670-dcf0-484e-a0c5-08590fe89a84/expenditure/dcf0-484e-a0c5-08590fe89a84-f6aa1670/dcf0-484e-a0c5-08590fe89a84-f6aa1670' \
 --header "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
 --header "Content-Type: application/json" \
 --header "Accept: application/json" \
 --data '{"amount":50000,"life_stage_section_uuid":"7871ba42-8fff-4a03-b11d-9e6fbaa3b334"}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json

# Payload
{
  "amount": 50000,
  "life_stage_section_uuid": "7871ba42-8fff-4a03-b11d-9e6fbaa3b334"
}
Response examples (200)
{
  "name": "Electricity",
  "uuid": "dbfa8e5d-77a4-4e41-bdd7-0ed67375bf93",
  "amount": {
    "amount": {
      "example": "4000",
      "description": "Money amount at their lowest denominator (for example: pennies)"
    },
    "currency": {
      "example": "GBP",
      "description": "Currency of the money"
    },
    "formatted": {
      "example": "£40.00",
      "description": "Money amount formatted with currency"
    }
  },
  "section": "Housekeeping Expenses",
  "position": "1",
  "created_at": "2025-06-05T11:39:38+01:00",
  "updated_at": "2025-06-05T11:39:38+01:00",
  "life_stage_uuid": "53d57b02-570d-4600-a07c-b4a2daedcc70",
  "life_stage_field_uuid": "84ee7b05-51aa-493f-bc2d-8127832807a2",
  "life_stage_section_uuid": "b4c97361-c616-4caa-88d2-ecee19c46ed2"
}