Get Alerts
**Sample URLs**
* List only alerts that are either in state `PENDING` or `ACCEPTED`:
https://api.ilert.com/api/alerts?states=PENDING&states=ACCEPTED
* List only alerts that belong to the alert source with ID `1243` or `1743` and where user `jd` is a responder:
https://api.ilert.com/api/alerts?sources=1243&sources=1743&responders=jd
* Paginate first batch for a range of alerts (note: query parameters should be url encoded):
https://api.ilert.com/api/alerts?start-index=0&max-results=100&from=2021-03-01T21:24:56.771Z&until=2021-04-01T21:24:56.771Z
* Fetch next page, assuming equal to max-results were returned:
https://api.ilert.com/api/alerts?start-index=100&max-results=100&from=2021-03-01T21:24:56.771Z&until=2021-04-01T21:24:56.771Z
* Pagination should be done based on the `reportTime` field using the parameters `from` and `until` as well as `start-index`. When building a local alert state store the `id` field should be used as identifier. The `alertKey` field is not suitable for this, as it is used to group related alerts to each other.
Get Alerts is an example object payload from ilert, with 7 top-level fields. It illustrates the shape of data this provider's APIs accept or return.