Jetstream API
...
API Endpoints
Event Configuration

Delete Events

5min
about 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 parameters property location details accesskey string required unique header the access key for your user account this value is a 36 character guid provided during user account sign up https //jetstreamrfid com/login/signup 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 docid yaqw97ir03lgkhnui2mb request each get events docid yaqw97ir03lgkhnui2mb 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 docid yaqw97ir03lgkhnui2mb request more info 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 examples example delete by batchid request url delete https //api jetstreamrfid com/2/events request body { "batchid" "c15d316b 5fc3 4a7f a2ba b1a96aabcd32" } response code 204 no content response body none returned example delete by eventids request url delete https //api jetstreamrfid com/2/events request body { "eventids" \[ "8af92758 451c 4082 a455 d57e927676a8", "64f295f7 ceb6 46aa a5d0 2a66e7009ff0" ] } response code 204 no content response body none returned version changes replaces removeevents