Get an event log
GET
https://api.expirationreminder.net/v1/eventlogs/{id}Path Parameters
id
string
RequiredGET /v1/eventlogs/{id}
$ curl https://api.expirationreminder.net/v1/eventlogs/{id} \
-H "Authorization: Bearer <token>"
Responses
| Property | Type | Description |
|---|---|---|
description |
string |
- |
details |
string |
- |
created |
string |
- |
id |
string (uuid) |
- |
type_id |
integer (int32) |
- |
user |
object |
- |
related_entities |
object[] |
- |
Example Response
{
"description": "string",
"details": "string",
"created": "string",
"id": "00000000-0000-0000-0000-000000000000",
"type_id": 0,
"user": {
"name": "string",
"email": "string",
"id": "00000000-0000-0000-0000-000000000000",
"team_id": "00000000-0000-0000-0000-000000000000"
},
"related_entities": [
{
"id": "00000000-0000-0000-0000-000000000000",
"type_id": 0
}
]
}Not Found
| Property | Type | Description |
|---|---|---|
message |
string |
- |
ok |
boolean |
- |
Example Response
{
"message": "string",
"ok": false
}