List Clicked Nodes
GET /api/0/projects/{organization_slug}/{project_slug}/replays/{replay_id}/clicks/
Retrieve a collection of RRWeb DOM node-ids and the timestamp they were clicked.
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.
Query Parameters:
cursor
(string)A pointer to the last object fetched and its sort order; used to retrieve the next or previous results.
environment
(array(string))The name of environments to filter by.
per_page
(integer)Limit the number of rows to return in the result. Default and maximum allowed is 100.
query
(string)The search filter for your query, read more about query syntax here.
example:
query=(transaction:foo AND release:abc) OR (transaction:[bar,baz] AND release:def)
Scopes
You need to authenticate via bearer auth token.
<auth_token>
requires one of the following scopes:project:admin
project:read
project:write
curl https://sentry.io/api/0/projects/{organization_slug}/{project_slug}/replays/{replay_id}/clicks/ \ -H 'Authorization: Bearer <auth_token>'
RESPONSESCHEMA
{
"data": [
{
"node_id": 1,
"timestamp": "2024-02-08T15:52:25+00:00"
}
]
}