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>"
}Documentation Index
Fetch the complete documentation index at: https://api-docs.rhombus.community/llms.txt
Use this file to discover all available pages before exploring further.
Your Rhombus API key. Must be accompanied by the x-auth-scheme header set to api-token (or partner-api-token for partner endpoints).
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.
api-token, api, partner-api-token, partner-api Request 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?