Get list of user who have viewed a replay
GET /api/0/projects/{organization_slug}/{project_slug}/replays/{replay_id}/viewed-by/
Return a list of users who have viewed a replay.
Path Parameters
organization_slug
(string)REQUIREDThe slug of the organization the resource belongs to.
project_slug
(string)REQUIREDThe slug of the project the resource belongs to.
replay_id
(string)REQUIREDThe ID of the replay you'd like to retrieve.
Scopes
You need to authenticate via bearer auth token.
<auth_token>
requires one of the following scopes:event:admin
event:read
event:write
curl https://sentry.io/api/0/projects/{organization_slug}/{project_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"
}
]
}
}