Skip to main content
GET
/
device
/
info
Retrieve Device Information
curl --request GET \
  --url https://api.hapticsconnect.com/device/info \
  --header 'Authorization: Bearer <token>'
{
  "firmware_version": "1.0.0",
  "type": "haptics-stroker-2000",
  "hardware_revision": "1.0.0",
  "factory_activation_time": 1723251774000,
  "user_activation_time": 1723251774000,
  "serial_number": "0000000000000001"
}

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

OK

firmware_version
string
required

The firmware version of the device.

Example:

"1.0.0"

type
string
required

The type of the device.

Example:

"haptics-stroker-2000"

hardware_revision
string
required

The hardware revision of the device.

Example:

"1.0.0"

factory_activation_time
number
required

The factory activation time of the device. Epoch time in milliseconds.

Example:

1723251774000

user_activation_time
number

The user activation time of the device. Epoch time in milliseconds.

Example:

1723251774000

serial_number
string

Device serial number. One-time write access on factory during registration.

Example:

"0000000000000001"