PresentationReceiptInput
Input type for verifying a presentation receipt. This input contains the raw JWTs (JSON Web Tokens) that serve as cryptographic receipts attesting to the authenticity and integrity of a presentation.
Typically, these tokens are generated and returned as part of a credential presentation process.
input PresentationReceiptInput {
faceCheck: String
id_token: String!
}
Fields
PresentationReceiptInput.faceCheck
● String
scalar
An optional JWT receipt used for biometric verification (face check) if such a check was performed as part of the presentation.
PresentationReceiptInput.id_token
● String!
non-null scalar
The primary JWT receipt for the presentation, known as the id_token. This token contains verifiable claims and must be provided for verification.
Member Of
verifyPresentation
query