TransactionUpdateInput Input Type
No description
input TransactionUpdateInput {
name: String
message: String
pspReference: String
availableActions: [TransactionActionEnum!]
amountAuthorized: MoneyInput
amountCharged: MoneyInput
amountRefunded: MoneyInput
amountCanceled: MoneyInput
metadata: [MetadataInput!]
privateMetadata: [MetadataInput!]
externalUrl: String
paymentMethodDetails: PaymentMethodDetailsInput
}
Fields
TransactionUpdateInput.name ● String scalar miscellaneous
Payment name of the transaction.
TransactionUpdateInput.message ● String scalar miscellaneous
The message of the transaction.
TransactionUpdateInput.pspReference ● String scalar miscellaneous
PSP Reference of the transaction.
TransactionUpdateInput.availableActions ● [TransactionActionEnum!] list enum payments
List of all possible actions for the transaction
TransactionUpdateInput.amountAuthorized ● MoneyInput input miscellaneous
Amount authorized by this transaction.
TransactionUpdateInput.amountCharged ● MoneyInput input miscellaneous
Amount charged by this transaction.
TransactionUpdateInput.amountRefunded ● MoneyInput input miscellaneous
Amount refunded by this transaction.
TransactionUpdateInput.amountCanceled ● MoneyInput input miscellaneous
Amount canceled by this transaction.
TransactionUpdateInput.metadata ● [MetadataInput!] list input miscellaneous
Payment public metadata. Can be read by any API client authorized to read the object it's attached to.
Warning: never store sensitive information, including financial data such as credit card details.
TransactionUpdateInput.privateMetadata ● [MetadataInput!] list input miscellaneous
Payment private metadata. Requires permissions to modify and to read the metadata of the object it's attached to.
Warning: never store sensitive information, including financial data such as credit card details.
TransactionUpdateInput.externalUrl ● String scalar miscellaneous
The url that will allow to redirect user to payment provider page with transaction event details.
TransactionUpdateInput.paymentMethodDetails ● PaymentMethodDetailsInput input miscellaneous
Details of the payment method used for the transaction.
Added in Saleor 3.22Member Of
transactionUpdate mutation