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":"99ab0c56-03b3-4917-8ad5-3a246c6faf63"}'
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": "99ab0c56-03b3-4917-8ad5-3a246c6faf63"
}
Response examples (200)
{
  "name": "Electricity",
  "uuid": "f43bea77-f359-4666-a81d-33860862a235",
  "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-17T14:20:18+01:00",
  "updated_at": "2025-06-17T14:20:18+01:00",
  "life_stage_uuid": "cb3daa19-ff1d-43aa-a7c8-7afac93ebd5f",
  "life_stage_field_uuid": "e933ef99-90fc-44f6-b202-3723abb0f8c6",
  "life_stage_section_uuid": "79667980-0b06-4c8e-81ee-dab85944f5ca"
}