Skip to main content

TransactionProcessSession Object

Event sent when user has additional payment action to process.

type TransactionProcessSession implements Event {
issuedAt: DateTime
version: String
issuingPrincipal: IssuingPrincipal
recipient: App
transaction: TransactionItem!
sourceObject: OrderOrCheckout!
data: JSON
merchantReference: String!
customerIpAddress: String
action: TransactionProcessAction!
}

Fields

issuedAt ● DateTime

Time of the event.

version ● String

Saleor version that triggered the event.

issuingPrincipal ● IssuingPrincipal

The user or application that triggered the event.

recipient ● App

The application receiving the webhook.

transaction ● TransactionItem!

Look up a transaction.

sourceObject ● OrderOrCheckout!

Checkout or order

data ● JSON

Payment gateway data in JSON format, received from storefront.

merchantReference ● String!

Merchant reference assigned to this payment.

customerIpAddress ● String

The customer's IP address. If not provided as a parameter in the mutation, Saleor will try to determine the customer's IP address on its own.

action ● TransactionProcessAction!

Action to proceed for the transaction

Interfaces

Event