🚧 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/generateTimelapseClip \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"description": "Daily timelapse of security events",
"deviceUuids": [
"AAAAAAAAAAAAAAAAAAAAAA.v0"
],
"drawCameraDetails": true,
"drawTimestamp": true,
"skipNights": true,
"skipWeekends": false,
"startTime": 1640995200000,
"stopTime": 1640998800000,
"title": "Daily Security Review",
"videoDuration": 60,
"videoFormat": "mp4"
}
'{
"clipUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"error": true,
"errorMsg": "<string>",
"warningMsg": "<string>"
}Generate a timelapse
curl --request POST \
--url https://api2.rhombussystems.com/api/video/generateTimelapseClip \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"description": "Daily timelapse of security events",
"deviceUuids": [
"AAAAAAAAAAAAAAAAAAAAAA.v0"
],
"drawCameraDetails": true,
"drawTimestamp": true,
"skipNights": true,
"skipWeekends": false,
"startTime": 1640995200000,
"stopTime": 1640998800000,
"title": "Daily Security Review",
"videoDuration": 60,
"videoFormat": "mp4"
}
'{
"clipUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"error": true,
"errorMsg": "<string>",
"warningMsg": "<string>"
}Your API key for Rhombus.
Authentication scheme indicator ("api-token").
9Request object for generating a timelapse clip.
Description for the timelapse
"Daily timelapse of security events"
List of device facet UUIDs to include in the timelapse. UUIDs without a facet defined will default to facet v0
RUUID with optional appended facet information
"AAAAAAAAAAAAAAAAAAAAAA.v0"
Whether to draw camera details on the video
true
Whether to draw timestamps on the video
true
Whether to skip night time periods
true
Whether to skip weekend periods
false
Start time in milliseconds for the timelapse
1640995200000
Stop time in milliseconds for the timelapse
1640998800000
Title for the timelapse
"Daily Security Review"
Duration in seconds for the output video
60
Format for the output video
"mp4"
Was this page helpful?