Skip to main content
POST
/
device
/
settings
Update Device Settings
curl --request POST \
  --url https://api.hapticsconnect.com/device/settings \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "device_name": "My Awesome Device"
}
'
{
  "device_name": "My Awesome Device"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
device_name
string
required

The name of the device.

Example:

"My Awesome Device"

Response

200 - application/json

Updated Device Settings

device_name
string
required

The name of the device.

Example:

"My Awesome Device"