Appearance
Get audit events.
GET
/backend/v1/audit
Retrieves a paginated list of events that detail the configuration history of the app.
Authorizations
HTTPBearer
TypeHTTP (bearer)
Parameters
Query Parameters
cursor
Selects page for paginated results. Pass in the next or prev attribute in the response.
search
Only return results that match the given text.
limit
Limits the amount of results.
Typeinteger
default
10
maximum
100
minimum
1
ascending
Whether results should be sorted in ascending order.
Typeboolean
default
false
before
Only return results from before this timestamp.
after
Only return results from after this timestamp.
type
Only return specific types of audit events.
Responses
Successful Response
application/json
JSON
{
"events": [
{
{
"createdAt": "string",
"data": "string",
"id": "string",
"type": "user-verified",
"user": {
"admin": "string",
"blocked": false,
"createdAt": "string",
"email": "string",
"id": "string",
"lastInvitationSentAt": "string",
"name": "string",
"org": "string",
"permissions": [
[
]
],
"roleIds": [
[
]
],
"roles": [
[
]
],
"social": false,
"teams": [
[
]
],
"verified": true
},
"userId": "string"
}
}
],
"next": "string",
"prev": "string"
}