Delete Events
Remove event messages from the events queue of the Jetstream user whose access key is being used. Events are removed in batches using the batch ID. Events are removed individually or as a collection using event IDs.
Property | Location | Details |
---|---|---|
AccessKey string
Required
Unique | Header | The access key for your user account. This value is a 36-character GUID provided in your Getting Started. |
BatchId string
Unique | Body | The batch ID associated with the batch of event messages to be removed. This value is a 36-character GUID provided via a Get Events request. Each Get Events request returns a batch of event messages along with an associated batch ID. By using this batch ID with a Delete Events request, all events within this batch can be removed. |
EventIds array(string)
Unique | Body | The set of event IDs associated with the individual event message or collection of event messages to be removed. Each value is a 36-character GUID associated with an event message. More than 100 event IDs may not be defined, despite the fact that more than 100 events may be returned via a Get Events request. |
Delete Events requires that either the BatchId property or the EventId property be defined with each request. You may not pass both at the same time. If you need to remove individual events and a batch of events, you must make two separate requests.
Request URL:
DELETE https://api.jetstreamrfid.com/3/events
Request Body:
Response Code:
204 No Content
Response Body:
None Returned
Request URL:
DELETE https://api.jetstreamrfid.com/3/events
Request Body:
Response Code:
204 No Content
Response Body:
None Returned
Added option to use PATCH verb