v8

latestOpenAPI 3.1.0raw.githubusercontent.com2026-07-05730512.7 KB
Credentials

List issued credentials

List issued credentials for your tenant. Each credential includes lifecycle status, issuer, validity timestamps, holder confirmation key, and source session information. Use this to manage issued credentials after issuance.

get/v1/credentials

Response

Array of issued credential records. Each array element contains these fields.

expires_atstring date-time

Timestamp when the credential expires.

issstring uri

Issuer URL that issued the credential.

issued_atstring date-time

Timestamp when the credential was issued.

source_session_idstring

Source Didit verification session identifier. The captured records use an empty string when no source session is linked.

statusstring

Lifecycle status of the credential.

status_idxinteger

Status-list index assigned to the credential.

uuidstring uuid

Unique identifier of the issued credential.

vctstring

VCT (Verifiable Credential Type) value of the issued credential.

Example response

[
  {
    "expires_at": "2027-07-02T23:51:57.346460Z",
    "holder_cnf": {
      "crv": "P-256",
      "kty": "EC",
      "x": "Y5JQ00Kvn2iW7tc5OuwTHlxyPYrxWdmbFtpR5oeXDtk",
      "y": "DSUZdwoe8qqxMYuNRt2uzUftY0-Aaq1tlx4ER-pPOZ4"
    },
    "iss": "http://localhost:8011/v1/issuers/docs-capture-z2373a",
    "issued_at": "2026-07-02T23:51:57.346854Z",
    "status": "issued",
    "status_idx": 34,
    "uuid": "c9d0940f-d03f-4c1d-8132-278c2c3016f4",
    "vct": "AirlineLoyalty"
  }
]