Update an Expenditure

POST /api/v1/client/{client_uuid}/expenditure/{lifeStage_uuid}/custom/{expenditure_uuid}

This endpoint creates an individual expenditure for a client.

Headers

Path parameters

application/json

Body Required

Responses

  • 200 application/json
    Hide response attributes Show response attributes object
POST /api/v1/client/{client_uuid}/expenditure/{lifeStage_uuid}/custom/{expenditure_uuid}
curl \
 -X POST https://api.plannrcrm.com/api/v1/client/f6aa1670-dcf0-484e-a0c5-08590fe89a84/expenditure/dcf0-484e-a0c5-08590fe89a84-f6aa1670/custom/expenditure_uuid \
 -H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
 -H "Content-Type: application/json" \
 -H "Accept: application/json" \
 -d '{"amount":50000,"life_stage_section_uuid":"04d229f8-6f4f-4bc9-b1cb-2220c002d6e7"}'
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": "04d229f8-6f4f-4bc9-b1cb-2220c002d6e7"
}
Response examples (200)
{
  "name": "Electricity",
  "uuid": "c8e7423b-fac0-4dff-b36b-deb06edafe8e",
  "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-01-17T11:18:29+00:00",
  "updated_at": "2025-01-17T11:18:29+00:00",
  "life_stage_uuid": "8296c869-ffb1-4534-a4cb-3226a4dcedfb",
  "life_stage_field_uuid": "c639e38c-bb7d-49dc-834a-bbbd07c5e929",
  "life_stage_section_uuid": "f690cfc7-48b6-42af-aa4c-407635ba20d8"
}