v5

latestOpenAPI 3.0.0raw.githubusercontent.com2025-09-30102742.8 KB
Backend

Get credential issuance status

Check the current status of a credential issuance request

post/webapp/credential-offer-status

Request body

idstring required

Identifier of the credential offer

Example request

{
  "id": "b326c4ab-16f1-4304-83e1-4637f8fe4207"
}

Response

Successful response

createdAtnumber required

Unix timestamp of when the request was created

lastUpdatedAtnumber required

Unix timestamp of the last status update

status'OFFER_CREATED ACCESS_TOKEN_REQUESTED' | 'ACCESS_TOKEN_CREATED' | 'CREDENTIAL_REQUEST_RECEIVED' | 'CREDENTIAL_ISSUED' | 'NOTIFICATION_CREDENTIAL_ACCEPTED' | 'NOTIFICATION_CREDENTIAL_DELETED' | 'NOTIFICATION_CREDENTIAL_FAILURE ERROR' required

The issue status part of the issuance session

errorstring
clientIdstring

Client identifier

Example response

{
  "createdAt": 1706533345000,
  "lastUpdatedAt": 1706533346000,
  "clientId": "https://wallet.example.com"
}