GET
/
v1
/
equipments
/
categories
curl --request GET \
  --url https://api.siit.io/v1/equipments/categories \
  --header 'Authorization: Bearer <token>'
{
  "meta": {
    "count": 123,
    "total": 123,
    "current_page": 123,
    "per_page": 20,
    "next_page_link": "<string>",
    "previous_page_link": "<string>"
  },
  "results": [
    {
      "uid": "<string>",
      "name": "<string>",
      "equipment_type": "computer",
      "label": "device",
      "created_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Usage

Authorizations

Authorization
string
header
required

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

Query Parameters

page
integer

The current page

per_page
integer

Number of results retrieved per page.

Response

200 - application/json
successful
meta
object
results
object[]