cURL
Python
JavaScript
PHP
Go
Java
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:
Selective disclosure works only with VC signed by BBS+ Signature.
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
data.credentials. @context
data.credentials. credentialSubject
data.credentials.credentialSubject. id
data.credentials. validFrom
data.credentials. validUntil
data.credentials.proof. type
data.credentials.proof. proofPurpose
data.credentials.proof. verificationMethod
data.credentials.proof. created
data.credentials.proof. mandatoryPointers
data.credentials.proof. cryptosuite
data.credentials.proof. @context
data.credentials.proof. revealedPointers
data.credentials.proof. revealedIndices
data.credentials. credentialStatus