GET /recording/:id

Get recording

Fetch a single recording (camera feed) by ID.

Returns a single recording by ID.

Path parameters

ParameterTypeRequiredDescription
idstringyes24-character hexadecimal recording ID

Query parameters

ParameterTypeRequiredDescription
includestring (CSV)noComma-separated extras to embed (see below)

include options

ValueEffect
locationDetailsEmbed the related location document
organisationDetailsEmbed the related organisation document
cameraServerDetailsEmbed the related camera server document
statElemsEmbed configured stat elements — lines and areas on the recording’s frame
processingConfigEmbed the analytics processing configuration
segmentBoundariesEmbed segment boundary timestamps for the recording
thumbnailEmbed a signed thumbnail URL for the camera
uploadingScheduleEmbed the upload schedule configured for the recording
lineContextsEmbed configured line definitions for the recording
areaContextsEmbed configured area definitions for the recording
lastSegmentStartDateInclude the timestamp of the most recent segment

Example request

GET https://api.auravisionlabs.com/v1/recording/64a1b2c3d4e5f6a7b8c9d0e4?include=locationDetails
Authorization: Bearer <your_token>

Example response

{
  "id": "64a1b2c3d4e5f6a7b8c9d0e4",
  "name": "Front entrance",
  "locationDetails": {
    "_id": "64a1b2c3d4e5f6a7b8c9d0e3",
    "name": "Oxford Street Store"
  }
}