Skip to main content
POST
/
device
/
hps
/
signal
Send Haptic Points Stream Signal
curl --request POST \
  --url https://api.hapticsconnect.com/device/hps/signal \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "points": [
    {
      "time": 1,
      "pos": 50
    }
  ]
}
'

Authorizations

Authorization
string
header
required

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

Body

application/json

The stroker movement velocity is calculated on device and is based on time difference between signals. At least two signals needed to move the stroker.

points
object[]
required

Array of points with time and position.

Response

200

OK