Skip to main content
GET
/
device
/
debug
/
info
Retrieve Debug Information
curl --request GET \
  --url https://api.hapticsconnect.com/device/debug/info \
  --header 'Authorization: Bearer <token>'
{
  "free_heap_size": 100000,
  "external_flash_size": 100000
}

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

OK

The debug information of the device.

free_heap_size
number

The free heap size of the device in bytes.

Example:

100000

external_flash_size
number

The external flash size of the device in bytes.

Example:

100000