GET
/
v1
/
vc
/
issuer
/
credentials
curl --request GET \
  --url https://staging.terminal3.io/v1/vc/issuer/credentials \
  --header 'x-api-token: <x-api-token>'
{
  "data": [
    {
      "@context": [
        "<string>"
      ],
      "id": "<string>",
      "issuer": "<string>",
      "credentialSubject": {
        "id": "<string>"
      },
      "type": [
        "<string>"
      ],
      "validFrom": "<string>",
      "validUntil": "<string>",
      "credentialStatus": "<any>",
      "proof": {
        "type": "<string>",
        "proofPurpose": "<string>",
        "verificationMethod": "<string>",
        "created": "<string>",
        "mandatoryPointers": [
          "<string>"
        ],
        "cryptosuite": "<string>",
        "@context": [
          "<string>"
        ],
        "proofValue": "<string>"
      }
    }
  ]
}

After submitting verifiable credentials via the Store Credential API, the client can use this API to retrieve all issued credentials.

Headers

x-api-token
string
required
x-api-subclient-id
string

Query Parameters

holder
string
Minimum length: 1
id
string
Minimum length: 1

Response

200
application/json

Success

The response is of type object.