Expense Categories
Add Expense Category
Endpoint to add a new ExpenseCategory.
post/business/v2/entities/expense-category
Request body
Example request
{
"name": "category-one",
"description": "An expense category",
"tax_rate_id": "7bf79328-a7ae-4222-aa54-091ff7f429a7",
"enabled": true
}Response
The result is an ExpenseCategory.
Example response
{
"id": "7bf79328-a7ae-4222-aa54-091ff7f429a7",
"name": "category-one",
"description": "An expense category",
"tax_rate_id": "c861cc24-6663-410f-8c78-73f886fff4ef",
"expense_type": "TRAVEL_AND_ENTERTAINMENT",
"integration": "Netsuite",
"creation_time": "2017-06-01T12:48:40Z",
"last_update_time": "2017-06-01T12:48:40Z"
}