v4

latestOpenAPI 3.0.3raw.githubusercontent.com2025-02-125816.2 KB
StatusHosting

Get a status list credential. This is what a wallet or RP would call, as this value ends up in digital credentials

Retrieve the status list credential for the given index. The response may be:

  • A signed JWT or SD-JWT string, for example, in the case of OAuth StatusLists.
  • A JSON-encoded Verifiable Credential, as per the W3C Verifiable Credential specification.
get/status-lists/{statusListId}

Path parameters

statusListIdstring required

The index of the status list to retrieve.

Query parameters

correlationIdstring

Optional correlation ID for querying the status list.

Response

Status list credential retrieved successfully. The returned response depends on the type of status list being queried.

OR
string required

A string representation of the credential (JWT or SD-JWT).

Example response

{
  "@context": [
    "https://www.w3.org/2018/credentials/v1"
  ],
  "id": "urn:uuid:123e4567-e89b-12d3-a456-426614174000",
  "type": [
    "VerifiableCredential"
  ],
  "issuer": "did:web:agent.findynet.demo.sphereon.com",
  "issuanceDate": "2023-01-01T12:00:00Z",
  "credentialSubject": {
    "id": "did:web:agent.findynet.demo.sphereon.com/subjects/123"
  }
}