curl --request GET \
--url https://api.example.com/api/audit-logs/{auditLogId} \
--header 'Authorization: Bearer <token>'{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"createdAt": "<string>",
"type": "organisation",
"action": "<string>",
"ipAddress": "<string>",
"userAgent": "<string>",
"refId": "<string>",
"organisationId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"user": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"email": "[email protected]",
"firstName": "<string>",
"lastName": "<string>"
},
"project": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>"
},
"data": "<unknown>"
}Retrieve a single audit log entry by ID, including the full data payload.
curl --request GET \
--url https://api.example.com/api/audit-logs/{auditLogId} \
--header 'Authorization: Bearer <token>'{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"createdAt": "<string>",
"type": "organisation",
"action": "<string>",
"ipAddress": "<string>",
"userAgent": "<string>",
"refId": "<string>",
"organisationId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"user": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"email": "[email protected]",
"firstName": "<string>",
"lastName": "<string>"
},
"project": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>"
},
"data": "<unknown>"
}Personal access token is obtained through your profile
Audit log entry ID
Audit log entry with full details
Audit log entry with full details
Unique identifier of the audit log entry
Timestamp when the action was performed
Category of the audited resource
organisation, user, group, accessToken, project, document, release, member, personalAccessToken Specific action that was performed
IP address of the client that performed the action
User agent of the client that performed the action
Reference ID of the affected resource
Organisation ID associated with the audit log
User who performed the action
Show child attributes
Project associated with the audit log entry
Show child attributes
Detailed payload of the action, containing before/after state
Was this page helpful?