POST
/
v1
/
openidc
/
credentials
/
proof
curl --request POST \
  --url https://staging.terminal3.io/v1/openidc/credentials/proof \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "vcIdFields": {},
  "options": {}
}'
{
  "data": {
    "holder": "<string>",
    "credentials": [
      {
        "@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>"
          ],
          "revealedPointers": [
            "<string>"
          ],
          "revealedIndices": [
            123
          ]
        }
      }
    ]
  }
}

Users must collect fields from issued VCs to create a presentation. For instance, they can choose Date of Birth (date_of_birth) from VC A and Passport Verified (passport_verified) from VC B, as shown below:

JSON
{
  "vcIdFields": {
    "urn:uuid:c62c2ff7-934a-47ee-a680-f203197a4510": [
      "/credentialSubject/date_of_birth"
    ],
    "urn:uuid:fd0ea071-c8b0-4c8d-a561-aa6a3af5f99e": [
      "/credentialSubject/passport_verified"
    ]
  }
}
Selective disclosure works only with VC signed by BBS+ Signature.

Authorizations

Authorization
string
header
required

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

Body

application/json
vcIdFields
object
required
options
object

Response

200
application/json
Success
data
object
required