- Home
- API Enriched
- Ddos
- infraprotect
- List of events.
List of events.
const url = 'https://example-corp.console.ves.volterra.io/api/v1/api/production/us-east-1/namespaces/default/api/infraprotect/namespaces/example/infraprotect/events';const options = { method: 'POST', headers: {Authorization: '<Authorization>', 'Content-Type': 'application/json'}, body: '{"end_time":"2026-04-15T12:00:00Z","mitigation_id":"example","namespace":"example","network_id":"example","start_time":"2026-04-15T12:00:00Z"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://example-corp.console.ves.volterra.io/api/v1/api/production/us-east-1/namespaces/default/api/infraprotect/namespaces/example/infraprotect/events \ --header 'Authorization: <Authorization>' \ --header 'Content-Type: application/json' \ --data '{ "end_time": "2026-04-15T12:00:00Z", "mitigation_id": "example", "namespace": "example", "network_id": "example", "start_time": "2026-04-15T12:00:00Z" }'Returns a list of events. Events are created when a high priority mitigation is started. Events then serve as a one stop shop to review activities to mitigate a DDoS attack.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”Namespace This request is supported only in system namespace.
Request Bodyrequired
Section titled “Request Bodyrequired”Request to GET a list of events.
object
End time of metric collection from which data will be considered to build graph. Format: RFC3339
Optional: If not specified, then the end_time will be evaluated to
Filter events by mitigation
Optional: If not specified, then events are returned regardless of mitigation.
This request is supported only in system namespace.
Filter events by network
Optional: If not specified, then all tenant’s networks are considerate.
Start time of metric collection from which data will be considered to build graph. Format: RFC3339
Optional: If not specified, then the start_time will be evaluated to
Examplegenerated
{ "end_time": "2026-04-15T12:00:00Z", "mitigation_id": "example", "namespace": "example", "network_id": "example", "start_time": "2026-04-15T12:00:00Z"}Responses
Section titled “Responses”A successful response.
Response to GET a list of events.
object
Recorder events filtered by events requests.
Event (an attack record) that holds info an attack and its mitigation(s)
object
Attachments on an event.
Event attachment record (pcap, or any arbitrary file)
object
ID of the attachment.
End time as an RFC3339 string.
Generic object storage name of the attachment.
Generic object storage version of the attachment.
Name of the attachment.
Size of the attachment.
Start time as an RFC3339 string.
Creator of the event.
More detailed description of the event. Most of the time list of actions taken.
End time as an RFC3339 string.
True if event has any attachment other than PCAP files.
True if the event already has details assigned, otherwise false.
ID of the event used to uniquely identify it.
Target IP
Mitigation the event is related to.
Name of an event.
Network the event is related to.
Start time as an RFC3339 string.
Example
{ "events": [ { "attachments": [ { "attachment_type": "ATTACHMENT_TYPE_UNKNOWN" } ] } ]}Returned when operation is not authorized.
Examplegenerated
exampleReturned when there is no permission to access resource.
Examplegenerated
exampleReturned when resource is not found.
Examplegenerated
exampleReturned when operation on resource is conflicting with current value.
Examplegenerated
exampleReturned when operation has been rejected as it is happening too frequently.
Examplegenerated
exampleReturned when server encountered an error in processing API.
Examplegenerated
exampleReturned when service is unavailable temporarily.
Examplegenerated
exampleReturned when server timed out processing request.
Examplegenerated
example