Audiences
AuthTokens
Brands
Inbound
Lists
Messages
Notifications
Profiles
Tenants
User Preferences
User Tenants
Audit Events
Get all audit events
Fetch the list of audit events
GET
/
audit-events
Copy
Ask AI
curl --request GET \
--url https://api.courier.com/audit-events \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
{
"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
The response is of type object
.
Copy
Ask AI
curl --request GET \
--url https://api.courier.com/audit-events \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
{
"paging": {
"cursor": "<string>",
"more": true
},
"results": [
{
"actor": {
"id": "<string>",
"email": "<string>"
},
"target": {
"id": "<string>",
"email": "<string>"
},
"auditEventId": "<string>",
"source": "<string>",
"timestamp": "<string>",
"type": "<string>"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.