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

Get credential status

Get the current status of a credential. This is a lightweight endpoint for polling
credential status without retrieving full credential details.

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 status

Content-Type: application/json

success boolean
data object
credential object
uuid string
status string

Allowed values: "pending", "issued", "suspended", "revoked"

revocation_reason string nullable

Code Examples

import os
from aho_sdk import AhoSdk

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

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

Try It

Log in to test this endpoint directly from the documentation.

Log in