Skip to main content
GET /v1/issuer/credentials/{uuid}/history API Key

Get credential history

Get the audit trail for a credential. Returns all status changes and modifications
tracked via Paper Trail for compliance purposes.

Parameters

Name Location Type Description
uuid * path string Credential UUID
X-API-Key * header string Issuer API key for authentication

* Required parameter

Response

200 Credential history

Content-Type: application/json

success boolean
data object
credential_uuid string
versions array[object]

Array items:

version_id integer
version_number integer
event string

Allowed values: "create", "update", "destroy"

changed_at string (date-time)
changes object

Code Examples

import os
from aho_sdk import AhoSdk

client = AhoSdk.issuer(api_key=os.environ["AHO_API_KEY"])

result = client.credentials.history(
    uuid="example_uuid"
)

Try It

Log in to test this endpoint directly from the documentation.

Log in