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
Delete existing billable 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
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Delete billable events payload
The body is of type object
.
Events deleted
Number of events deleted
1
Was this page helpful?