Get all event logs
GET
https://api.expirationreminder.net/v1/eventlogsQuery Parameters
term
stringOptionalDefault:
type
stringOptionalDefault:
page
integerOptionalDefault: -1
sort
stringOptionalDefault:
sortDirection
stringOptionalDefault: asc
GET /v1/eventlogs
$ curl https://api.expirationreminder.net/v1/eventlogs \
-H "Authorization: Bearer <token>"
Responses
| Property | Type | Description |
|---|---|---|
eventlogs |
object[] |
- |
pages |
integer (int32) |
- |
page |
integer (int32) |
- |
total |
integer (int32) |
- |
Example Response
{
"eventlogs": [
{
"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
}
]
}
],
"pages": 0,
"page": 0,
"total": 0
}Bad Request
| Property | Type | Description |
|---|---|---|
message |
string |
- |
ok |
boolean |
- |
Example Response
{
"message": "string",
"ok": false
}