Skip to main content
POST
/
api
/
video
/
spliceV2
Splice V2
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>"
}

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 splicing video clips V2 (deprecated).

description
string | null

Description for the spliced clip

Example:

"Review of security incident from main entrance"

deviceUuids
(string<RUUID> | null)[] | null

List of device UUIDs to splice video from

base 64 (url-safe) uuid string

Example:

"AAAAAAAAAAAAAAAAAAAAAA"

durationSec
integer<int32> | null

Duration in seconds for the splice

Example:

60

fisheyePresentationMap
object

Map of device UUIDs to dewarped view configurations for fisheye cameras

startTimeMillis
integer<int64> | null

Start time in milliseconds for the splice

Example:

1640995200000

title
string | null

Title for the spliced clip

Example:

"Security Incident Review"

Response

200 - application/json

OK

Response object for splicing video clips V2 (deprecated).

clipUuid
string<RUUID> | null

base 64 (url-safe) uuid string

Example:

"AAAAAAAAAAAAAAAAAAAAAA"

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