Expenses
Categories
Authorization: Bearer ak_.... Required scope includes read:expenses. Pass entityId (query / JSON / x-entity-id).
Authorization
bearerAuth AuthorizationBearer <token>
Create keys under Settings → API keys. Prefix ak_. Send as Authorization: Bearer ak_....
In: header
Query Parameters
entityId*string
Entity UUID; must match the API key’s entity when using Bearer auth.
Format
uuidResponse Body
application/json
application/json
curl -X GET "https://example.com/api/expenses/categories?entityId=497f6eca-6276-4993-bfeb-53cbbbba6f08"Empty
{ "error": "string"}{ "error": "string"}Authorization: Bearer ak_.... Required scope includes write:expenses. Pass entityId as above.
Authorization
bearerAuth AuthorizationBearer <token>
Create keys under Settings → API keys. Prefix ak_. Send as Authorization: Bearer ak_....
In: header
Query Parameters
entityId*string
Entity UUID; must match the API key’s entity when using Bearer auth.
Format
uuidRequest Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
application/json
curl -X POST "https://example.com/api/expenses/categories?entityId=497f6eca-6276-4993-bfeb-53cbbbba6f08" \ -H "Content-Type: application/json" \ -d '{ "name": "string" }'Empty
{ "error": "string"}{ "error": "string"}{ "error": "string"}