Skip to main content
GET
/
audit
/
logs
List audit logs
curl --request GET \
  --url https://api.hixbe.com/certify/audit/logs \
  --header 'Authorization: Bearer <token>' \
  --header 'Hixbe-Version: <hixbe-version>'
{
  "logs": [
    {
      "actor": "user_1234567890abcdef",
      "action": "credential.issued",
      "timestamp": "2025-12-03T10:00:00Z"
    },
    {
      "actor": "system",
      "action": "credential.verified",
      "timestamp": "2025-12-03T09:45:00Z"
    },
    {
      "actor": "admin_0987654321fedcba",
      "action": "credential.revoked",
      "timestamp": "2025-12-02T16:30:00Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Headers

Hixbe-Version
string
required

API version in YYYY-MM-DD format

Example:

"2026-01-01"

Response

Successfully retrieved audit logs

Response containing audit log entries

logs
object[]

Array of audit log entries