Skip to main content
Identity & Access/Credentials
GETCredentialSince 1.0SynchronousAuth Required

ListAuditLogs

List credential audit log entries with optional filters for credential, action, operator, and time range.

Execution Availability

Try It Out

Submit a mock request using the current auth context and example-driven inputs.

Query Parameters

Request Inputs

Query Parameters

  • credentialUuidString

    UUID of the credential whose audit logs should be listed.

  • actionString

    Filter logs by action type (e.g. CREATE, REVEAL).

  • operatorString

    Filter logs by the operator account that performed the action.

  • sinceString

    Return only audit logs created after this timestamp.

  • untilString

    Return only audit logs created before this timestamp.

Responses

200 OK

On success, this API returns the following response structure.

  • itemsList

    List of audit log entries matching the query.

    Example: (nested array)

    • uuidString

      Unique identifier of this audit log entry.

      Example: log-00112233-4455-6677-8899-aabbccddeeff

    • credentialUuidString

      UUID of the credential that this log entry relates to.

      Example: cred-a1b2c3d4-e5f6-7890-abcd-ef1234567890

    • credentialNameString

      Name of the credential at the time the operation was performed.

      Example: prod-db-password

    • actionString

      Type of action performed (e.g. CREATE, UPDATE, DELETE, REVEAL).

      Example: REVEAL

    • operatorString

      Account or principal that performed the action.

      Example: ops@example.com

    • detailsString

      Additional contextual details about the operation.

      Example: Revealed by automation pipeline for deployment job #42

    • createDateString

      Timestamp when this audit log entry was created.

      Example: 2026-01-15T08:00:00Z

  • totalInteger

    Total number of audit log entries matching the filter (before pagination).

    Example: 100

  • limitInteger

    Maximum number of items returned per page.

    Example: 50

  • offsetInteger

    Number of items skipped before this page.

    Example: 20

Endpoint

GET/api/v1/credential-audit

/api/v1/credential-audit

Operation ID

ListAuditLogs

Permalink

Request Example

curl -X GET '{host}/api/v1/credential-audit' -H 'Authorization: Bearer {token}'

Response Example

200
{
  "items": [
    {}
  ],
  "total": 100,
  "limit": 50,
  "offset": 20
}

Change History

This API has no change history records yet.

View all change history