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

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

audit-event-id
string
required

A unique identifier associated with the audit event you wish to retrieve

Response

200 - application/json
auditEventId
string
required
source
string
required
timestamp
string
required
type
string
required
actor
object
target
object