Responses

  • 200 application/json

    List of devices

    Hide response attribute Show response attribute object
    • data array[object]
      Hide data attributes Show data attributes object
      • deviceId string(uuid)
      • name string
      • status string

        Values are online, offline, or unknown.

GET /devices
curl \
 --request GET 'https://api.pairfon.com/devices' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "data": [
    {
      "deviceId": "string",
      "name": "string",
      "status": "online"
    }
  ]
}