Events History

List of user's finished and missed events

Info

Required scopes: stream.read

Warning

This method requires authentication

Retrieve a list of the user's finished and missed events.

curl -H "Authorization: Bearer [access token]" \
     "https://api.restream.io/v2/user/events/history?page=1&limit=10"

Response

Success
Error
{
  "items": [
    {
      "id": "2527849f-f961-4b1d-8ae0-8eae4f068327",
      "status": "finished",
      "title": "Event title",
      "description": "Event description",
      "coverUrl": "URL or null",
      "isRecordOnly": false,
      "scheduledFor": 1599983310,
      "startedAt": 1599983310,
      "finishedAt": 1599983310,
      "destinations": [
        {
          "channelId": 1,
          "externalUrl": "URL or null",
          "streamingPlatformId": 5
        }
      ]
    },
    ...
  ],
  "pagination": {
    "pages_total": 10,
    "page": 1,
    "limit": 10
  }
}
Info

status can be "finished" or "missed". isRecordOnly is true if the event was streamed in a record-only mode.