Get list of user who have viewed a replay

GET /api/0/projects/{organization_slug}/{project_id_or_slug}/replays/{replay_id}/viewed-by/

Return a list of users who have viewed a replay.

Path Parameters

organization_slug (string)
REQUIRED

The slug of the organization the resource belongs to.

project_id_or_slug (string)
REQUIRED

The id or slug of the project the resource belongs to.

replay_id (string)
REQUIRED

The ID of the replay you'd like to retrieve.

Scopes

<auth_token> requires one of the following scopes:
  • event:admin
  • event:read
  • event:write
curl https://sentry.io/api/0/projects/{organization_slug}/{project_id_or_slug}/replays/{replay_id}/viewed-by/ \
 -H 'Authorization: Bearer <auth_token>'
RESPONSESCHEMA
{
  "data": {
    "viewed_by": [
      {
        "id": "884411",
        "name": "some.body@sentry.io",
        "username": "d93522a35cb64c13991104bd73d44519",
        "email": "some.body@sentry.io",
        "avatarUrl": "https://gravatar.com/avatar/d93522a35cb64c13991104bd73d44519d93522a35cb64c13991104bd73d44519?s=32&d=mm",
        "isActive": true,
        "hasPasswordAuth": false,
        "isManaged": false,
        "dateJoined": "2022-07-25T23:36:29.593212Z",
        "lastLogin": "2024-03-14T18:11:28.740309Z",
        "has2fa": true,
        "lastActive": "2024-03-15T22:22:06.925934Z",
        "isSuperuser": true,
        "isStaff": false,
        "experiments": {},
        "emails": [
          {
            "id": "2231333",
            "email": "some.body@sentry.io",
            "is_verified": true
          }
        ],
        "avatar": {
          "avatarType": "upload",
          "avatarUuid": "499dcd0764da42a589654a2224086e67",
          "avatarUrl": "https://sentry.io/avatar/499dcd0764da42a589654a2224086e67/"
        },
        "type": "user"
      }
    ]
  }
}