GET
/
v1
/
vc
/
issuer
/
credentials
curl --request GET \
  --url https://staging.terminal3.io/v1/vc/issuer/credentials \
  --header 'Authorization: Bearer <token>' \
  --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.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

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
data
object[]
required