GET
/
api
/
v1
/
tasks
/
statuses
curl --request GET \
  --url https://api.byblend.com/api/v1/tasks/statuses \
  --header 'Authorization: Bearer <token>'
[
  {
    "status_code": "NEW",
    "status_name": "New"
  }
]

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 available task statuses

The response is of type object[].