Audiences
Audit Events
AuthTokens
Inbound
Lists
Messages
Notifications
Profiles
Tenants
Translations
User Preferences
User Tenants
Audit Events
List
GET
/
audit-events
curl --request GET \
--url https://api.courier.com/audit-events \
--header 'Authorization: Bearer <token>'
{
"paging": {
"cursor": "<string>",
"more": true
},
"results": [
{
"actor": {
"id": "<string>",
"email": "<string>"
},
"target": {
"id": "<string>",
"email": "<string>"
},
"auditEventId": "<string>",
"source": "<string>",
"timestamp": "<string>",
"type": "<string>"
}
]
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
A unique identifier that allows for fetching the next set of audit events.
Response
200 - application/json
curl --request GET \
--url https://api.courier.com/audit-events \
--header 'Authorization: Bearer <token>'
{
"paging": {
"cursor": "<string>",
"more": true
},
"results": [
{
"actor": {
"id": "<string>",
"email": "<string>"
},
"target": {
"id": "<string>",
"email": "<string>"
},
"auditEventId": "<string>",
"source": "<string>",
"timestamp": "<string>",
"type": "<string>"
}
]
}