Skip to main content

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 miscellaneous

Payment name of the transaction.

Added in Saleor 3.13

TransactionCreateInput.message ● String scalar miscellaneous

The message of the transaction.

Added in Saleor 3.13

TransactionCreateInput.pspReference ● String scalar miscellaneous

PSP Reference of the transaction.

Added in Saleor 3.13

TransactionCreateInput.availableActions ● [TransactionActionEnum!] list enum payments

List of all possible actions for the transaction

TransactionCreateInput.amountAuthorized ● MoneyInput input miscellaneous

Amount authorized by this transaction.

TransactionCreateInput.amountCharged ● MoneyInput input miscellaneous

Amount charged by this transaction.

TransactionCreateInput.amountRefunded ● MoneyInput input miscellaneous

Amount refunded by this transaction.

TransactionCreateInput.amountCanceled ● MoneyInput input miscellaneous

Amount canceled by this transaction.

Added in Saleor 3.13

TransactionCreateInput.metadata ● [MetadataInput!] list input miscellaneous

Payment public metadata.

TransactionCreateInput.privateMetadata ● [MetadataInput!] list input miscellaneous

Payment private metadata.

TransactionCreateInput.externalUrl ● String scalar miscellaneous

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