GET
/
api
/
v1
/
tasks
/
categories
curl --request GET \
  --url https://api.byblend.com/api/v1/tasks/categories \
  --header 'Authorization: Bearer <token>'
[
  {
    "category_code": "T06",
    "category_name": "Inventory"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

Successful response with list of task categories

The response is of type object[].