browse audit logs across all workspaces
Authentication: required
curl --request GET \
--url https://your-xano-instance.xano.io/api:meta/audit_log \
--header 'Authorization: Bearer <token>'{
"items": [
{
"id": 123,
"created_at": "<string>",
"updated_at": "<string>",
"type": "<string>",
"msg": "<string>",
"label": [
"<string>"
],
"data": {},
"obj": {
"type": "<string>",
"id": 123
},
"user": {
"id": 123,
"email": "jsmith@example.com"
},
"workspace": {
"id": 123,
"name": "<string>"
},
"branch": {
"id": 123,
"label": "<string>"
}
}
],
"itemsReceived": 123,
"curPage": 123,
"nextPage": 123,
"prevPage": 123,
"offset": 123,
"perPage": 123,
"itemsTotal": 123,
"pageTotal": 123
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?
curl --request GET \
--url https://your-xano-instance.xano.io/api:meta/audit_log \
--header 'Authorization: Bearer <token>'{
"items": [
{
"id": 123,
"created_at": "<string>",
"updated_at": "<string>",
"type": "<string>",
"msg": "<string>",
"label": [
"<string>"
],
"data": {},
"obj": {
"type": "<string>",
"id": 123
},
"user": {
"id": 123,
"email": "jsmith@example.com"
},
"workspace": {
"id": 123,
"name": "<string>"
},
"branch": {
"id": 123,
"label": "<string>"
}
}
],
"itemsReceived": 123,
"curPage": 123,
"nextPage": 123,
"prevPage": 123,
"offset": 123,
"perPage": 123,
"itemsTotal": 123,
"pageTotal": 123
}