Get detailed information about a shared clip page, including seekpoints and bounding boxes
curl --request POST \
--url https://api2.rhombussystems.com/api/event/getSharedClipGroupDetails \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
'import requests
url = "https://api2.rhombussystems.com/api/event/getSharedClipGroupDetails"
payload = { "uuid": "AAAAAAAAAAAAAAAAAAAAAA" }
headers = {
"x-auth-scheme": "<x-auth-scheme>",
"x-auth-apikey": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'x-auth-scheme': '<x-auth-scheme>',
'x-auth-apikey': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({uuid: 'AAAAAAAAAAAAAAAAAAAAAA'})
};
fetch('https://api2.rhombussystems.com/api/event/getSharedClipGroupDetails', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));HttpResponse<String> response = Unirest.post("https://api2.rhombussystems.com/api/event/getSharedClipGroupDetails")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"uuid\": \"AAAAAAAAAAAAAAAAAAAAAA\"\n}")
.asString();{
"error": true,
"errorMsg": "<string>",
"sharedClipGroup": {
"createdAtMillis": 123,
"description": "<string>",
"expirationTimeSecs": 123,
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"sharedClips": [
{
"boundingBoxes": [
{
"alert": true,
"bottom": 123,
"confidence": 123,
"croppedImageLocator": "<string>",
"customActivityDescription": "<string>",
"customActivityDisplayName": "<string>",
"dwelling": true,
"faceName": "<string>",
"inMotion": true,
"keypointsV2": {},
"left": 123,
"licensePlate": "<string>",
"loudness": 123,
"objectId": 123,
"pose": "<string>",
"relativeSecond": 123,
"right": 123,
"sensorValType": {
"sensorBoolean": true,
"sensorDouble": 123,
"sensorLong": 123
},
"stableTrackId": 123,
"toastOrderIdInfo": {
"employeeName": "<string>",
"guid": "<string>",
"locationName": "<string>",
"restaurantName": "<string>",
"toastCheckInfo": {
"totalAmount": 123
}
},
"top": 123,
"unidentifiedFaceId": "<string>",
"vehicleName": "<string>"
}
],
"clipLocation": {
"region": "<string>"
},
"clipLocationV2": "<string>",
"description": "<string>",
"deviceUuidMap": {},
"durationSec": 123,
"seekPoints": [
{
"alert": true,
"customActivityDescription": "<string>",
"customActivityDisplayName": "<string>",
"dcao": true,
"dwelling": true,
"faceName": "<string>",
"id": 123,
"inMotion": true,
"licensePlate": "<string>",
"loudness": 123,
"pose": "<string>",
"relativeSecond": 123,
"sensorValType": {
"sensorBoolean": true,
"sensorDouble": 123,
"sensorLong": 123
},
"stableTrackId": 123,
"toastOrderIdInfo": {
"employeeName": "<string>",
"guid": "<string>",
"locationName": "<string>",
"restaurantName": "<string>",
"toastCheckInfo": {
"totalAmount": 123
}
},
"tu": "<string>",
"unidentifiedFaceId": "<string>",
"vehicleName": "<string>"
}
],
"startTime": 123,
"thumbnailLocation": {
"region": "<string>"
},
"thumbnailLocationV2": "<string>",
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"title": "<string>",
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
},
"warningMsg": "<string>"
}Event Webservice
Get detailed information about a shared clip page, including seekpoints and bounding boxes
Get detailed information about a shared clip page, including seekpoints and bounding boxes
POST
/
api
/
event
/
getSharedClipGroupDetails
Get detailed information about a shared clip page, including seekpoints and bounding boxes
curl --request POST \
--url https://api2.rhombussystems.com/api/event/getSharedClipGroupDetails \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
'import requests
url = "https://api2.rhombussystems.com/api/event/getSharedClipGroupDetails"
payload = { "uuid": "AAAAAAAAAAAAAAAAAAAAAA" }
headers = {
"x-auth-scheme": "<x-auth-scheme>",
"x-auth-apikey": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'x-auth-scheme': '<x-auth-scheme>',
'x-auth-apikey': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({uuid: 'AAAAAAAAAAAAAAAAAAAAAA'})
};
fetch('https://api2.rhombussystems.com/api/event/getSharedClipGroupDetails', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));HttpResponse<String> response = Unirest.post("https://api2.rhombussystems.com/api/event/getSharedClipGroupDetails")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"uuid\": \"AAAAAAAAAAAAAAAAAAAAAA\"\n}")
.asString();{
"error": true,
"errorMsg": "<string>",
"sharedClipGroup": {
"createdAtMillis": 123,
"description": "<string>",
"expirationTimeSecs": 123,
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"sharedClips": [
{
"boundingBoxes": [
{
"alert": true,
"bottom": 123,
"confidence": 123,
"croppedImageLocator": "<string>",
"customActivityDescription": "<string>",
"customActivityDisplayName": "<string>",
"dwelling": true,
"faceName": "<string>",
"inMotion": true,
"keypointsV2": {},
"left": 123,
"licensePlate": "<string>",
"loudness": 123,
"objectId": 123,
"pose": "<string>",
"relativeSecond": 123,
"right": 123,
"sensorValType": {
"sensorBoolean": true,
"sensorDouble": 123,
"sensorLong": 123
},
"stableTrackId": 123,
"toastOrderIdInfo": {
"employeeName": "<string>",
"guid": "<string>",
"locationName": "<string>",
"restaurantName": "<string>",
"toastCheckInfo": {
"totalAmount": 123
}
},
"top": 123,
"unidentifiedFaceId": "<string>",
"vehicleName": "<string>"
}
],
"clipLocation": {
"region": "<string>"
},
"clipLocationV2": "<string>",
"description": "<string>",
"deviceUuidMap": {},
"durationSec": 123,
"seekPoints": [
{
"alert": true,
"customActivityDescription": "<string>",
"customActivityDisplayName": "<string>",
"dcao": true,
"dwelling": true,
"faceName": "<string>",
"id": 123,
"inMotion": true,
"licensePlate": "<string>",
"loudness": 123,
"pose": "<string>",
"relativeSecond": 123,
"sensorValType": {
"sensorBoolean": true,
"sensorDouble": 123,
"sensorLong": 123
},
"stableTrackId": 123,
"toastOrderIdInfo": {
"employeeName": "<string>",
"guid": "<string>",
"locationName": "<string>",
"restaurantName": "<string>",
"toastCheckInfo": {
"totalAmount": 123
}
},
"tu": "<string>",
"unidentifiedFaceId": "<string>",
"vehicleName": "<string>"
}
],
"startTime": 123,
"thumbnailLocation": {
"region": "<string>"
},
"thumbnailLocationV2": "<string>",
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"title": "<string>",
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
},
"warningMsg": "<string>"
}Authorizations
Your Rhombus API key. Must be accompanied by the x-auth-scheme header set to api-token (or partner-api-token for partner endpoints).
Headers
Authentication scheme identifier. Use api-token for standard API key authentication, partner-api-token for partner API key authentication. Must be paired with the x-auth-apikey header containing your API key.
Available options:
api-token, api, partner-api-token, partner-api Body
application/json
Request object for retrieving detailed information about a shared clip group.
base 64 (url-safe) uuid string
Example:
"AAAAAAAAAAAAAAAAAAAAAA"
Last modified on August 9, 2026
⌘I