v1

latestOpenAPI 3.0.02026-08-068926279.2 KB
Expense Categories

Create an expense category

Creates a new expense category

post/expense_categories

Request body

namestring required

Example request

{
  "name": "Office Supplies"
}

Response

Successful response

idinteger
team_idinteger
namestring
budget_amountnumber nullable
budget_frequency'monthly' | 'quarterly' | 'yearly' nullable
budget_rollover_onboolean

Example response

{
  "id": 1,
  "team_id": 1,
  "name": "Office Supplies",
  "budget_amount": 500,
  "budget_frequency": "monthly"
}