TransactionEventReport
Report the event for the transaction.
Added in Saleor 3.13This API is currently in Feature Preview and can be subject to changes at later point.
Staff user cannot update a transaction that is owned by the app.
type TransactionEventReport {
alreadyProcessed: Boolean
transaction: TransactionItem
transactionEvent: TransactionEvent
errors: [TransactionEventReportError!]!
}
Fields
TransactionEventReport.alreadyProcessed
● Boolean
scalar miscellaneous
Defines if the reported event hasn't been processed earlier.
TransactionEventReport.transaction
● TransactionItem
object payments
The transaction related to the reported event.
TransactionEventReport.transactionEvent
● TransactionEvent
object payments
The event assigned to this report. if
alreadyProcessed
is set totrue
, the previously processed event will be returned.
TransactionEventReport.errors
● [TransactionEventReportError!]!
non-null object payments
Returned By
transactionEventReport
mutation