Skip to main content
POST
/
api
/
camera
/
createCustomFootageSeekpoints
Create custom footage seekpoints
curl --request POST \
  --url https://api2.rhombussystems.com/api/camera/createCustomFootageSeekpoints \
  --header 'Content-Type: application/json' \
  --header 'x-auth-apikey: <api-key>' \
  --header 'x-auth-scheme: <x-auth-scheme>' \
  --data '
{
  "cameraUuid": "AAAAAAAAAAAAAAAAAAAAAA.v0",
  "footageSeekPoints": [
    {
      "name": "<string>",
      "timestampMs": 1,
      "color": "BLUE",
      "description": "<string>",
      "displayOverlay": true
    }
  ]
}
'
{
  "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 to create custom footage seek points for a camera.

cameraUuid
string<DeviceFacetUuid> | null

RUUID with optional appended facet information

Example:

"AAAAAAAAAAAAAAAAAAAAAA.v0"

footageSeekPoints
object[] | null

List of custom footage seek points to create

Response

200 - application/json

OK

Response indicating the result of creating footage seek points.

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