🚧 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/createSharedTimelapseGroup \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"description": "Shared timelapse for security review",
"expirationTimeSecs": 86400,
"plaintextPassword": "securePassword123",
"timelapseUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"title": "Security Review"
}
'{
"error": true,
"errorMsg": "<string>",
"shareUrl": "https://example.com/share/timelapse/12345",
"uuid": "AAAAAAAAAAAAAAAAAAAAAA",
"warningMsg": "<string>"
}Share multiple timelapses in one link
curl --request POST \
--url https://api2.rhombussystems.com/api/video/createSharedTimelapseGroup \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"description": "Shared timelapse for security review",
"expirationTimeSecs": 86400,
"plaintextPassword": "securePassword123",
"timelapseUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"title": "Security Review"
}
'{
"error": true,
"errorMsg": "<string>",
"shareUrl": "https://example.com/share/timelapse/12345",
"uuid": "AAAAAAAAAAAAAAAAAAAAAA",
"warningMsg": "<string>"
}Your API key for Rhombus.
Authentication scheme indicator ("api-token").
9Request object for creating a shared timelapse group.
Description for the shared timelapse group
"Shared timelapse for security review"
Expiration time in seconds for the shared group
86400
Plaintext password for the shared timelapse group
"securePassword123"
List of timelapse UUIDs to include in the shared group
base 64 (url-safe) uuid string
"AAAAAAAAAAAAAAAAAAAAAA"
Title for the shared timelapse group
"Security Review"
OK
Response object for creating a shared timelapse group.
Was this page helpful?