Get an Event
The Get Event endpoint allows you to retrieve a specific Event in your Garmingo Status instance.
Endpoint | Method | URL |
---|---|---|
/events/{id} | GET | https://garmingo.com/api/status/v1/events/{id} |
Query Parameters
Parameter | Type | Description | Required | Default | Minimum | Maximum |
---|
Response
The response is a JSON object with the following properties:
Property | Type | Description |
---|---|---|
success | boolean | Whether the request was successful. |
data | Event | The Event data. |
Example
{
"success": true,
"data": {
"id": "5f4b3b3b-0b3b-4b3b-0b3b-4b3b0b3b0b3b",
"monitorId": "5f4b3b3b-0b3b-4b3b-0b3b-4b3b0b3b0b3b",
"status": true,
"timestamp": "2021-01-01T00:00:00.000Z",
"metadata": {
"key": "value"
}
}
}