TransactionCreateInput
No description
input TransactionCreateInput {
name: String
message: String
pspReference: String
availableActions: [TransactionActionEnum!]
amountAuthorized: MoneyInput
amountCharged: MoneyInput
amountRefunded: MoneyInput
amountCanceled: MoneyInput
metadata: [MetadataInput!]
privateMetadata: [MetadataInput!]
externalUrl: String
}
Fields
TransactionCreateInput.name ● String scalar
Payment name of the transaction.
Added in Saleor 3.13
TransactionCreateInput.message ● String scalar
The message of the transaction.
Added in Saleor 3.13
TransactionCreateInput.pspReference ● String scalar
PSP Reference of the transaction.
Added in Saleor 3.13
TransactionCreateInput.availableActions ● [TransactionActionEnum!] list enum
List of all possible actions for the transaction
TransactionCreateInput.amountAuthorized ● MoneyInput input
Amount authorized by this transaction.
TransactionCreateInput.amountCharged ● MoneyInput input
Amount charged by this transaction.
TransactionCreateInput.amountRefunded ● MoneyInput input
Amount refunded by this transaction.
TransactionCreateInput.amountCanceled ● MoneyInput input
Amount canceled by this transaction.
Added in Saleor 3.13
TransactionCreateInput.metadata ● [MetadataInput!] list input
Payment public metadata.
TransactionCreateInput.privateMetadata ● [MetadataInput!] list input
Payment private metadata.
TransactionCreateInput.externalUrl ● String scalar
The url that will allow to redirect user to payment provider page with transaction event details.
Added in Saleor 3.13
Member of
OrderBulkCreateInput input ● transactionCreate mutation