CheckoutFullyPaid Object
Event sent when a checkout was fully paid. A checkout is considered fully paid when its chargeStatus
is FULL
or OVERCHARGED
. This event is not sent if payments are only authorized but not fully charged.
It is triggered only for checkouts whose payments are processed through the Transaction API.
type CheckoutFullyPaid implements Event {
issuedAt: DateTime
version: String
issuingPrincipal: IssuingPrincipal
recipient: App
checkout: Checkout
}
Fields
CheckoutFullyPaid.issuedAt
● DateTime
scalar miscellaneous
Time of the event.
CheckoutFullyPaid.version
● String
scalar miscellaneous
Saleor version that triggered the event.
CheckoutFullyPaid.issuingPrincipal
● IssuingPrincipal
union miscellaneous
The user or application that triggered the event.
CheckoutFullyPaid.recipient
● App
object apps
The application receiving the webhook.
CheckoutFullyPaid.checkout
● Checkout
object checkout
The checkout the event relates to.
Interfaces
Event
interface miscellaneous
Returned By
checkoutFullyPaid
subscription