Skip to main content
GET
/
v1
/
api
/
categories
List all parcel categories
curl --request GET \
  --url http://localhost:3091/v1/api/categories \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 123,
    "code": "<string>",
    "name": "<string>"
  }
]

Authorizations

Authorization
string
header
required

JWT access token from POST /v1/api/auth/login

Response

Categories returned successfully

id
integer<int32>
code
string
name
string