For deleting a certain set of events, this interface can be used. To specify such a set, the variables category, source, type and also a staring and an ending timestamp can be used, multiple filters are also possible (by sending an array of e.g. categories).
Yes, please take a look at Authentication. To keep it simple, only the data parameter is mentioned on this page, but keep in mind that the other parameters are also necessary.
JSON
POST
The sent JSON object data should contain the following parameters:
An optional value. This is a UNIX timestamp the beginning of the time period.
An optional value. This is a UNIX timestamp the end of the time period.
An optional whitelist filter to specify the set of events to be deleted by a certain category.
An optional whitelist filter to specify the set of events to be deleted by a certain source.
An optional whitelist filter to specify the set of events to be deleted by a certain type.
An optional blacklist filter to specify the set of events to be deleted by which aren't of a certain category.
An optional blacklist filter to specify the set of events to be deleted by which aren't of a certain source.
An optinal blacklist filter to specify the set of events to be deleted by which aren't of a certain type.
data={ "type_bl":"APPSTART" }
{ "APIVersion":3, "result":1 }
data={ "category":"ENVIRONMENT", "source":"MOBILE", "type":"POSITION" }
{ "APIVersion":3, "result":1 }
In case of an error, a different response is sent. Please take a look at Error Responses.