Example Requests:
| Endpoint | Description | |
|---|---|---|
| /incidents/EIR?created_after=2019-09-24T16:40:35Z | Return Incidents closed after 2019-09-24T16:40:35Z | |
| /incidents/EIR?created_after=2019-09-24T16:00:00Z&created_before=2019-09-24T17:00:00Z | Return closed Incidents created during the hour of 2019-09-24T16:00:00Z | |
| /incidents/EIR?sort=closed_at | Return closed Incidents sorted by their closed date in order of newest to oldest | |
| /incidents/EIR?sort=created_at&direction=asc | Return closed Incidents sorted by their created date in order of oldest to newest | |
| /incidents/EIR?status=open | Return Incidents that are currently open | . |
External DocumentationTo learn more, visit the PhishLabs Incident Data documentation.
Basic Parameters
| Parameter | Description |
|---|---|
| Message ID | Return all incidents related with given email Message-ID. |
| Status | Filter incidents that are opened or closed. Note: Open cases are not updated in real time. |
Advanced Parameters
| Parameter | Description |
|---|---|
| Closed After | Return Incidents closed on or after the given timestamp Timestamp is in RFC3339 format(2019-04-12T23:20:50Z). |
| Closed Before | Return Incidents closed on or before the given timestamp Timestamp is in RFC3339 format(2019-04-12T23:20:50Z). |
| Created After | Return Incidents created on or after the given timestamp Timestamp is in RFC3339 format(2019-04-12T23:20:50Z). |
| Created Before | Return Incidents created on or before the given timestamp Timestamp is in RFC3339 format(2019-04-12T23:20:50Z). |
| Direction | Return Incidents sorted by the given order. This will be applied to the given sort parameter. |
| Extend Attachments | If true, the attachment list will contain the following additional attachment types (if available): screenshot & submission. By default, only payload will be included. |
| Limit | Number of records to return. |
| Offset | Number of Incidents to skip. This parameter is only useful with pagination. |