Skip to main content
POST
/
api
/
kiosk
/
updateKiosk
Update kiosk
curl --request POST \
  --url https://api2.rhombussystems.com/api/kiosk/updateKiosk \
  --header 'Content-Type: application/json' \
  --header 'x-auth-apikey: <api-key>' \
  --header 'x-auth-scheme: <x-auth-scheme>' \
  --data '
{
  "kioskUpdate": {
    "batteryLevel": 123,
    "connectionStatus": "ONLINE",
    "deleted": true,
    "lastUpdateTimeMs": 123,
    "latitude": 123,
    "locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
    "longitude": 123,
    "name": "<string>",
    "orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
    "printerIP": "<string>",
    "updatedSetMethodMap": {},
    "uuid": "AAAAAAAAAAAAAAAAAAAAAA"
  }
}
'
{
  "error": true,
  "errorMsg": "<string>",
  "warningMsg": "<string>"
}

Authorizations

x-auth-apikey
string
header
required

Your API key for Rhombus.

Headers

x-auth-scheme
string
default:api-token
required

Authentication scheme indicator ("api-token").

Required string length: 9

Body

application/json

Request object for selectively updating kiosk settings.

kioskUpdate
object

Selective update information for the kiosk

Response

200 - application/json

OK

Response object for updating kiosk settings.

error
boolean | null
errorMsg
string | null
warningMsg
string | null