Skip to main content
GET
/
v4
/
expenses
/
personalCategories
Get personal categories
curl --request GET \
  --url https://sandbox.hurdlr.com/rest/v4/expenses/personalCategories \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 123,
    "name": "Accounting / Tax",
    "hasChilds": true,
    "parentCategoryId": 123,
    "status": "ACTIVE"
  }
]

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Query Parameters

lastUpdatedDate
string
required

Date filter - returns all records modified after the specified date

Response

200 - application/json

Successful operation

id
integer<int64>

Id of the category, required when updating existing category

name
string

Name of the personal category

Example:

"Accounting / Tax"

hasChilds
boolean

Whether this category has children or not

parentCategoryId
integer<int64>

Parent id for this category, if it exists

status
enum<string>

Status of this category

Available options:
ACTIVE,
INACTIVE,
DELETED
Example:

"ACTIVE"