Events
Contents
Events
Events allow the user to track his actions and the state of the servers.
List Events
GET /v3/audit/events
It returns information about the events related to the customer.
Inputs
None
Returns
An array of events, ordered from most to less recent, with the following fields:
Field | Type | Description |
---|---|---|
id | String | Identifier of the event. |
timestamp | Time | Time of the event. |
level | String | Level of the event, either info, warning or error. |
header | String | Short description of the event. |
description | String | Long description of the event. |
resource_type | String | An identifier for the type of resource, specifically "event". |
Show Event
GET /v3/audit/events/:id
It returns information about the event identified by the given id.
Inputs
None
Returns
An event with the following fields:
Field | Type | Description |
---|---|---|
id | String | Identifier of the event. |
timestamp | Time | Time of the event. |
level | String | Level of the event, either info, warning or error. |
header | String | Short description of the event. |
description | String | Long description of the event. |
resource_type | String | An identifier for the type of resource, specifically "event". |