Show an individual Expenditure

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

This endpoint allows you to view an individual expenditure.

Path parameters

Responses

GET /api/v1/client/{client_uuid}/expenditure/{id}
curl \
 -X GET https://api.plannrcrm.com/api/v1/client/f6aa1670-dcf0-484e-a0c5-08590fe89a84/expenditure/id \
 -H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
 -H "Content-Type: application/json" \
 -H "Accept: application/json"
Response examples (200)
{
  "name": "Electricity",
  "uuid": "a9abfe23-69b6-4a84-9693-a07c30d21f4b",
  "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": "2024-10-16T11:10:13+01:00",
  "updated_at": "2024-10-16T11:10:13+01:00",
  "life_stage_uuid": "dfa72b23-5502-4e52-8a0d-f41578f342f6",
  "life_stage_field_uuid": "15a8c818-390b-49b4-a0ce-57dba41940d5",
  "life_stage_section_uuid": "3ebb1f6b-0135-494a-acf2-795310a67386"
}