PaymentMethodProcessTokenizationSession
Event sent when user continues a tokenization of payment method.
Added in Saleor 3.16This API is currently in Feature Preview and can be subject to changes at later point.
type PaymentMethodProcessTokenizationSession implements Event {
issuedAt: DateTime
version: String
issuingPrincipal: IssuingPrincipal
recipient: App
user: User!
channel: Channel!
data: JSON
id: String!
}
Fields
PaymentMethodProcessTokenizationSession.issuedAt
● DateTime
scalar miscellaneous
Time of the event.
PaymentMethodProcessTokenizationSession.version
● String
scalar miscellaneous
Saleor version that triggered the event.
PaymentMethodProcessTokenizationSession.issuingPrincipal
● IssuingPrincipal
union miscellaneous
The user or application that triggered the event.
PaymentMethodProcessTokenizationSession.recipient
● App
object apps
The application receiving the webhook.
PaymentMethodProcessTokenizationSession.user
● User!
non-null object users
The user related to the requested action.
PaymentMethodProcessTokenizationSession.channel
● Channel!
non-null object channels
Channel related to the requested action.
PaymentMethodProcessTokenizationSession.data
● JSON
scalar miscellaneous
Payment gateway data in JSON format, received from storefront.
PaymentMethodProcessTokenizationSession.id
● String!
non-null scalar miscellaneous
The ID returned by app from
PAYMENT_METHOD_INITIALIZE_TOKENIZATION_SESSION
webhook.