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.
curl --request GET \
--url https://api.courier.com/audit-events \
--header 'Authorization: Bearer <token>'{
"paging": {
"cursor": "<string>",
"more": true
},
"results": [
{
"auditEventId": "<string>",
"actor": {
"id": "<string>",
"email": "<string>"
},
"target": "<string>",
"source": "<string>",
"timestamp": "<string>",
"type": "<string>"
}
]
}Fetch the list of audit events
curl --request GET \
--url https://api.courier.com/audit-events \
--header 'Authorization: Bearer <token>'{
"paging": {
"cursor": "<string>",
"more": true
},
"results": [
{
"auditEventId": "<string>",
"actor": {
"id": "<string>",
"email": "<string>"
},
"target": "<string>",
"source": "<string>",
"timestamp": "<string>",
"type": "<string>"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
A unique identifier that allows for fetching the next set of audit events.