GET
/
analytics
/
activities
/
v1
curl --request GET \
  --url https://api.mottostreaming.com/analytics/activities/v1 \
  --header 'Authorization: Bearer <token>'
{
  "activities": [
    {
      "id": "<string>",
      "project_id": "<string>",
      "domain": "<string>",
      "service_id": "<string>",
      "message": "<string>",
      "code": "<string>",
      "record_time": "2023-11-07T05:31:56Z",
      "dimensions": {}
    }
  ],
  "next_page_token": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

page_size
integer
project_id
string
filter
string

Optional KQL filter to apply to the list of activities. Filtering is only supported on the dimensions field and the supported operator is =. If multiple filters are provided, they are combined using the OR operator. For example, filter: dimensions.video_id:123 OR dimensions.ingest_id:456.

page_token
string

Response

200
application/json
OK
activities
object[]

Activity is a data point that represents an action or event in the system.

next_page_token
string