🚧 The Rhombus Developer Documentation is currently in beta. For the official documentation, please visit docs.rhombus.com.
curl --request POST \
--url https://api2.rhombussystems.com/api/video/spliceV2 \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"description": "Review of security incident from main entrance",
"deviceUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"durationSec": 60,
"fisheyePresentationMap": {},
"startTimeMillis": 1640995200000,
"title": "Security Incident Review"
}
'{
"clipUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"error": true,
"errorMsg": "<string>",
"warningMsg": "<string>"
}Use /spliceV3 instead
curl --request POST \
--url https://api2.rhombussystems.com/api/video/spliceV2 \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"description": "Review of security incident from main entrance",
"deviceUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"durationSec": 60,
"fisheyePresentationMap": {},
"startTimeMillis": 1640995200000,
"title": "Security Incident Review"
}
'{
"clipUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"error": true,
"errorMsg": "<string>",
"warningMsg": "<string>"
}Your API key for Rhombus.
Authentication scheme indicator ("api-token").
9Request object for splicing video clips V2 (deprecated).
Description for the spliced clip
"Review of security incident from main entrance"
List of device UUIDs to splice video from
base 64 (url-safe) uuid string
"AAAAAAAAAAAAAAAAAAAAAA"
Duration in seconds for the splice
60
Map of device UUIDs to dewarped view configurations for fisheye cameras
Show child attributes
Start time in milliseconds for the splice
1640995200000
Title for the spliced clip
"Security Incident Review"
Was this page helpful?