Skip to main content
POST
/
api
/
audiogateway
/
getAudioSeekpoints
Get audio seek points
curl --request POST \
  --url https://api2.rhombussystems.com/api/audiogateway/getAudioSeekpoints \
  --header 'Content-Type: application/json' \
  --header 'x-auth-apikey: <api-key>' \
  --header 'x-auth-scheme: <x-auth-scheme>' \
  --data '
{
  "deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA.v0",
  "duration": 3600,
  "startTime": 1640995200000
}
'
{
  "error": true,
  "errorMsg": "<string>",
  "footageSeekPoints": [
    {
      "a": "SOUND_LOUD",
      "ts": 123,
      "al": true,
      "cc": "BLUE",
      "cd": "<string>",
      "cdn": "<string>",
      "dcao": true,
      "fn": "<string>",
      "id": 123,
      "loudness": 123,
      "lp": "<string>",
      "m": true,
      "p": "<string>",
      "ro": [
        "<string>"
      ],
      "sensorValType": {
        "sensorBoolean": true,
        "sensorDouble": 123,
        "sensorLong": 123
      },
      "toi": {
        "employeeName": "<string>",
        "guid": "<string>",
        "locationName": "<string>",
        "restaurantName": "<string>",
        "toastCheckInfo": {
          "totalAmount": 123
        }
      },
      "tu": "<string>",
      "uf": "<string>",
      "vn": "<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 to get audio seek points for an audio gateway.

deviceUuid
string<DeviceFacetUuid> | null

RUUID with optional appended facet information

Example:

"AAAAAAAAAAAAAAAAAAAAAA.v0"

duration
integer<int32> | null

Duration in seconds

Example:

3600

startTime
integer<int64> | null

Start time in milliseconds since epoch

Example:

1640995200000

Response

200 - application/json

OK

Response containing audio seek points for an audio gateway.

error
boolean | null
errorMsg
string | null
footageSeekPoints
object[] | null

List of audio seek points for the specified time period

warningMsg
string | null