Wallet
Get credential endpoint
Request issuance of a credential
post/credentials
Request body
Example request
{
"credential_identifier": "credential-dataset-123",
"credential_configuration_id": "UniversityDegree_JWT",
"proof": {
"proof_type": "jwt",
"jwt": "eyJhbGciOiJFUzI1NiIsInR5cCI6IkpXVCJ9..."
},
"proofs": {
"jwt": [
"eyJhbGciOiJFUzI1NiIsInR5cCI6IkpXVCJ9...",
"eyJhbGciOiJFUzI1NiIsInR5cCI6IkpXVCJ9..."
]
},
"credential_response_encryption": {
"alg": "ECDH-ES",
"enc": "A256GCM"
}
}Response
Successful response with issued credential
Example response
{
"credentials": [
{
"credential": "eyJhbGciOiJFUzI1NiIsInR5cCI6IkpXVCJ9..."
}
],
"transaction_id": "txn-12345",
"notification_id": "notif-67890"
}