AsyncIssuanceTokenResponse
A limited async issuance token response.
type AsyncIssuanceTokenResponse {
expires: DateTime!
photoCaptureRequestId: String
token: String!
}
Fields
AsyncIssuanceTokenResponse.expires
● DateTime!
non-null scalar
AsyncIssuanceTokenResponse.photoCaptureRequestId
● String
scalar
The photo capture request ID to use with photo capture operations prior to issuance. This will be set if the async issuance was created with photoCapture
set to true.
When this field is set:
- A photo must be captured prior to calling
Mutation.createIssuanceRequestForAsyncIssuance
. - The async issuance token can used for photo capture operations:
Mutation.capturePhoto
,Subscription.photoCaptureEvent
andQuery.photoCaptureStatus
.
AsyncIssuanceTokenResponse.token
● String!
non-null scalar
Returned By
acquireAsyncIssuanceToken
mutation