# TenderTransaction - admin-graphql - OBJECT Version: 2024-10 ## Description A TenderTransaction represents a transaction with financial impact on a shop's balance sheet. A tender transaction always represents actual money movement between a buyer and a shop. TenderTransactions can be used instead of OrderTransactions for reconciling a shop's cash flow. A TenderTransaction is immutable once created. ### Access Scopes `read_orders` access scope. ## Fields * [amount](/docs/api/admin-graphql/2024-10/objects/MoneyV2): MoneyV2! - The amount and currency of the tender transaction. * [id](/docs/api/admin-graphql/2024-10/scalars/ID): ID! - A globally-unique ID. * [order](/docs/api/admin-graphql/2024-10/objects/Order): Order - The order that's related to the tender transaction. This value is null if the order has been deleted. * [paymentMethod](/docs/api/admin-graphql/2024-10/scalars/String): String - Information about the payment method used for the transaction. * [processedAt](/docs/api/admin-graphql/2024-10/scalars/DateTime): DateTime - Date and time when the transaction was processed. * [remoteReference](/docs/api/admin-graphql/2024-10/scalars/String): String - The remote gateway reference associated with the tender transaction. * [test](/docs/api/admin-graphql/2024-10/scalars/Boolean): Boolean! - Whether the transaction is a test transaction. * [transactionDetails](/docs/api/admin-graphql/2024-10/unions/TenderTransactionDetails): TenderTransactionDetails - Information about the payment instrument used for the transaction. * [user](/docs/api/admin-graphql/2024-10/objects/StaffMember): StaffMember - The staff member who performed the transaction. ## Connections ## Related queries * [tenderTransactions](/docs/api/admin-graphql/2024-10/queries/tenderTransactions) Returns a list of TenderTransactions associated with the shop. ## Related mutations ## Related Unions ## Examples