Return details of all Categories

GET /categories/all

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • id integer(int32)
    • name string | null
    • description string | null
    • productDescription string | null
    • image string | null
    • bannerImage string | null
  • 401 application/json

    Unauthorized

    Hide response attributes Show response attributes object
    • type string | null
    • title string | null
    • status integer(int32) | null
    • detail string | null
    • instance string | null
  • 429 application/json

    Too Many Requests

    Hide response attributes Show response attributes object
    • type string | null
    • title string | null
    • status integer(int32) | null
    • detail string | null
    • instance string | null
GET /categories/all
curl \
 --request GET 'https://dealers.api.rg-racing.com/categories/all'
Response examples (200)
[
  {
    "id": 42,
    "name": "string",
    "description": "string",
    "productDescription": "string",
    "image": "string",
    "logo": "string",
    "bannerImage": "string"
  }
]
Response examples (401)
{
  "type": "string",
  "title": "string",
  "status": 42,
  "detail": "string",
  "instance": "string"
}
Response examples (429)
{
  "type": "string",
  "title": "string",
  "status": 42,
  "detail": "string",
  "instance": "string"
}