DELETE
/
v1
/
events
curl --request DELETE \
  --url https://ingest.hyperline.co/v1/events \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "matching": "record_ids",
  "record_ids": [
    "<string>"
  ]
}'
1

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
Delete billable events payload
matching
enum<string>
required
Available options:
record_ids
record_ids
string[]
required

List of event record IDs to delete.

Response

200 - application/json
Events deleted

Number of events deleted

Example:

1