GET
/
v1
/
core
/
recordings
Get recordings
curl --request GET \
  --url https://us-central1-siro-prod.cloudfunctions.net/api-externalApi/v1/core/recordings
[
  {
    "id": "<string>",
    "organizationId": "<string>",
    "userId": "<string>",
    "title": "<string>",
    "durationInMilliseconds": 123,
    "latitude": 123,
    "longitude": 123,
    "result": "OPEN",
    "createdAt": "<string>",
    "links": {
      "web": {
        "self": "<string>"
      }
    }
  }
]

Query Parameters

createdAt:gt
string

Return results created after the given date. Format: ISO 8601 timestamp (YYYY-MM-DDTHH:mm:ss.sssZ). Example: 2024-06-13T04:00:00.592Z

createdAt:lt
string

Return results created before the given date. Format: ISO 8601 timestamp (YYYY-MM-DDTHH:mm:ss.sssZ). Example: 2024-06-13T04:00:00.592Z

pageSize
string

Number of results to return per page (default is 25).

cursor
string

Cursor for pagination.

Response

200 - application/json

Get recordings

The response is of type object[].