Skip to main content
GET
/
device
/
hlc
/
status
Loop Control Status
curl --request GET \
  --url https://api.hapticsconnect.com/device/hlc/status \
  --header 'Authorization: Bearer <token>'
{
  "velocity": 0.5,
  "low_limit": 0.5,
  "high_limit": 0.5,
  "is_playing": true
}

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 haptic loop control status of the device.

velocity
number<float>

The velocity of the loop.

Example:

0.5

low_limit
number<float>

The low limit of the loop.

Example:

0.5

high_limit
number<float>

The high limit of the loop.

Example:

0.5

is_playing
boolean

The status of the loop.

Example:

true