Skip to main content

PresentationResponse

Represents a successful presentation request response

type PresentationResponse {
expiry: PositiveInt!
qrCode: String
requestId: ID!
url: URL!
}

Fields

PresentationResponse.expiry ● PositiveInt! non-null scalar

Indicates when the response will expire.

PresentationResponse.qrCode ● String scalar

A QR code that the user can scan to start the presentation flow.

PresentationResponse.requestId ● ID! non-null scalar

An autogenerated request ID. The callback uses the same request, allowing you to keep track of the presentation request and its callbacks.

PresentationResponse.url ● URL! non-null scalar

A URL that launches the authenticator app and starts the presentation process. You can present this URL to the user if they can't scan the QR code.

Implemented By

PresentationRequestResponse union