GET
/
api
/
equipment
/
{id}
curl --request GET \
  --url http://localhost/api/equipment/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "<string>",
  "description": "<string>",
  "type": "DOCKING_STATION"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Response

200
*/*
Equipment successfully retrieved
id
string
name
string
description
string
type
enum<string>
Available options:
DOCKING_STATION,
MONITOR,
KEYBOARD,
MOUSE,
OTHER