Backend

Get credential offer

Retrieve a specific credential offer by ID

get/webapp/credential-offers/{id}

Path parameters

idstring required

Unique identifier of the credential offer

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"
}

Changes

Changed in 1 of the 5 revisions of this API.71

  • bc177bfc592871See the full diff
    • added the new ACCESS_TOKEN_CREATED enum value to the status response property for the response status 200

      response-property-enum-value-added

    • added the new CREDENTIAL_ISSUED enum value to the status response property for the response status 200

      response-property-enum-value-added

    • added the new CREDENTIAL_REQUEST_RECEIVED enum value to the status response property for the response status 200

      response-property-enum-value-added

    • added the new NOTIFICATION_CREDENTIAL_ACCEPTED enum value to the status response property for the response status 200

      response-property-enum-value-added

    • added the new NOTIFICATION_CREDENTIAL_DELETED enum value to the status response property for the response status 200

      response-property-enum-value-added

    • added the new NOTIFICATION_CREDENTIAL_FAILURE ERROR enum value to the status response property for the response status 200

      response-property-enum-value-added

    • added the new OFFER_CREATED ACCESS_TOKEN_REQUESTED enum value to the status response property for the response status 200

      response-property-enum-value-added

    • removed the OFFER_CREATED ACCESS_TOKEN_REQUESTED ACCESS_TOKEN_CREATED CREDENTIAL_REQUEST_RECEIVED CREDENTIAL_ISSUED NOTIFICATION_CREDENTIAL_ACCEPTED NOTIFICATION_CREDENTIAL_DELETED NOTIFICATION_CREDENTIAL_FAILURE ERROR enum value from the status response property for the response status 200

      response-property-enum-value-removed