Skip to main content
POST
/
api
/
camera
/
deleteCustomFootageSeekpoints
Delete custom footage seekpoints
curl --request POST \
  --url https://api2.rhombussystems.com/api/camera/deleteCustomFootageSeekpoints \
  --header 'Content-Type: application/json' \
  --header 'x-auth-apikey: <api-key>' \
  --header 'x-auth-scheme: <x-auth-scheme>' \
  --data '
{
  "cameraUuids": [
    "AAAAAAAAAAAAAAAAAAAAAA.v0"
  ],
  "customName": "motion_event",
  "endTimestampMs": 1641081600000,
  "startTimestampMs": 1640995200000
}
'
{
  "deleteSeekpointResponseMap": {},
  "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 delete custom footage seek points for cameras within a time range.

cameraUuids
(string<DeviceFacetUuid> | null)[] | null

List of camera UUIDs to delete custom seek points for

RUUID with optional appended facet information

Example:

"AAAAAAAAAAAAAAAAAAAAAA.v0"

customName
string | null

Filter which custom seek points to delete with the custom name provided

Example:

"motion_event"

endTimestampMs
integer<int64> | null

UNIX milliseconds timestamp to end custom seek point deletion, up to 24 hours from the start timestamp

Example:

1641081600000

startTimestampMs
integer<int64> | null

UNIX milliseconds timestamp to start custom seek point deletion

Example:

1640995200000

Response

200 - application/json

OK

Response containing the results of deleting custom footage seek points.

deleteSeekpointResponseMap
object

Mapping of camera UUIDs to seek point deletion results

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