Audit Events
Get an audit event
Audiences
AuthTokens
Brands
Inbound
Lists
Messages
Notifications
Profiles
Tenants
User Preferences
User Tenants
Audit Events
Get an audit event
Fetch a specific audit event by ID.
GET
/
audit-events
/
{audit-event-id}
curl --request GET \
--url https://api.courier.com/audit-events/{audit-event-id} \
--header 'Authorization: Bearer <token>'
{
"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.
Path Parameters
A unique identifier associated with the audit event you wish to retrieve
curl --request GET \
--url https://api.courier.com/audit-events/{audit-event-id} \
--header 'Authorization: Bearer <token>'
{
"actor": {
"id": "<string>",
"email": "<string>"
},
"target": {
"id": "<string>",
"email": "<string>"
},
"auditEventId": "<string>",
"source": "<string>",
"timestamp": "<string>",
"type": "<string>"
}