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

ExportAuditLogs

Export all matching credential audit logs as a full dataset for compliance or analysis.

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 exported.

  • actionString

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

  • operatorString

    Filter exported logs by the operator account.

  • sinceString

    Export only audit logs created after this timestamp.

  • untilString

    Export only audit logs created before this timestamp.

Responses

200 OK

On success, this API returns the following response structure.

  • itemsList

    Full list of audit log entries for the export.

    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

Endpoint

GET/api/v1/credential-audit/export

/api/v1/credential-audit/export

Operation ID

ExportAuditLogs

Permalink

Request Example

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

Response Example

200
{
  "items": [
    {}
  ]
}

Change History

This API has no change history records yet.

View all change history