Get all expenditures including totals for a client

GET /api/v1/client/{client_uuid}/expenditure

Response includes all expenditures for a client along with their calculated income and disposal income

Path parameters

Query parameters

Responses

  • 200 application/json
    Hide response attribute Show response attribute object
GET /api/v1/client/{client_uuid}/expenditure
curl \
 --request GET 'https://api.plannrcrm.com/api/v1/client/f6aa1670-dcf0-484e-a0c5-08590fe89a84/expenditure' \
 --header "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
 --header "Content-Type: application/json" \
 --header "Accept: application/json"
Response examples (200)
{
  "data": [
    {
      "name": "Electricity",
      "uuid": "2908079e-1913-44c7-87c2-f070a47f911c",
      "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": "19fb2d85-c7a5-4abe-a201-68c3d38a6abd",
      "life_stage_field_uuid": "e324d5e7-f04e-44d2-ae6d-886d49430dac",
      "life_stage_section_uuid": "5167a8b7-32b6-463a-95ac-60d0325426d7"
    }
  ]
}