v1

latestOpenAPI 3.1.02026-07-26549156879.0 KB
Finance > Category

Reads all Categories

Fetch expense categories and subcategories for the company

get/api/2026-07-01/resources/finance/categories

Query parameters

ids[]string[]

Search categories by ID

Search categories by ID

[
  "1"
]
company_ids[]string[]

Search categories by company IDs

Search categories by company IDs

[
  "1"
]
parent_category_ids[]string[]

Search subcategories by parent category ID

Search subcategories by parent category ID

[
  "2"
]
category_level'category' | 'subcategory' | 'all' required

Filter by category level

Example:all

Filter by category level

type'mileage' | 'expense' | 'perdiem' | 'all' required

Filter by category type

Example:expense

Filter by category type

statuses[]string[] required

Filter by category status

Filter by category status

[
  "enabled"
]
searchstring

Search by category label or identifier

Example:accommodation

Search by category label or identifier

Response

OK

Example response

{
  "data": [
    {
      "id": "1",
      "label": "Accommodation Expenses",
      "default_label": "Alojamiento",
      "parent_category_id": "2",
      "identifier": "accommodation",
      "visible": true,
      "enabled": true,
      "position": 1
    }
  ]
}