GET
/
categories
/
{categoryId}
curl --request GET \
  --url https://dashboard.scango.ch/api/v1/categories/{categoryId} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "name": "<string>",
    "description": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

categoryId
string
required

ID of the category to retrieve

Response

200 - application/json
Category details
data
object