You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| rangeStart | string | The minimum UTC timestamp in the deletion range. |
639
+
| rangeEnd | string | The maximum UTC timestamp in the deletion range. |
640
+
| environments | list[string]| The environment to delete replays from. If not specified, applies to all environments |
641
+
| projects | list[number]| The projects to delete replays from. |
642
+
| status | string | The status of the deletion job. One of `pending`, `in-progress`, and `completed`. |
643
+
| query | optional[string]| The query string which matches the to-be-deleted replays. Conforms to https://docs.sentry.io/concepts/search/#query-syntax|
644
+
645
+
- Response 200
646
+
647
+
```json
648
+
{
649
+
"data": [
650
+
{
651
+
"id": 23,
652
+
"dateCreated": "2025-06-06T14:05:57.909921",
653
+
"dateUpdated": "2025-06-06T14:05:57.909921",
654
+
"rangeStart": "2025-06-01T00:00:00.000000",
655
+
"rangeEnd": "2025-06-04T00:00:00.000000",
656
+
"environments": ["production"],
657
+
"projects": [11276],
658
+
"status": "in-progress",
659
+
"query": "release:2.3.0 AND url:*/billing*"
660
+
}
661
+
]
662
+
}
663
+
```
664
+
665
+
### Create a Replay Batch Deletion Job [POST]
666
+
667
+
Delete a collection of replays. Deletes are throttled and will take some time to complete. The number of events expected to be deleted is returned on the meta object. This number is ephemeral and can change. It is only returned for informational reasons.
0 commit comments