--- title: tenderTransactions - GraphQL Admin description: >- Transactions representing a movement of money between customers and the shop. Each transaction records the amount, payment method, processing details, and the associated [`Order`](https://shopify.dev/docs/api/admin-graphql/latest/objects/Order). Positive amounts indicate customer payments to the merchant. Negative amounts represent refunds from the merchant to the customer. Use the [`query`](https://shopify.dev/docs/api/admin-graphql/latest/queries/tenderTransactions#arguments-query) parameter to filter transactions by attributes such as transaction ID, processing date, and point-of-sale device ID. api_version: 2026-01 api_name: admin type: query api_type: graphql source_url: html: 'https://shopify.dev/docs/api/admin-graphql/latest/queries/tenderTransactions' md: >- https://shopify.dev/docs/api/admin-graphql/latest/queries/tenderTransactions.md --- # tender​Transactions query Transactions representing a movement of money between customers and the shop. Each transaction records the amount, payment method, processing details, and the associated [`Order`](https://shopify.dev/docs/api/admin-graphql/latest/objects/Order). Positive amounts indicate customer payments to the merchant. Negative amounts represent refunds from the merchant to the customer. Use the [`query`](https://shopify.dev/docs/api/admin-graphql/latest/queries/tenderTransactions#arguments-query) parameter to filter transactions by attributes such as transaction ID, processing date, and point-of-sale device ID. ## TenderTransactionConnection arguments [TenderTransactionConnection!](https://shopify.dev/docs/api/admin-graphql/latest/connections/TenderTransactionConnection) * after * before * first * last * query * reverse *** ## Possible returns * edges * nodes * pageInfo *** ## Examples * ### Retrieves a list of tender transactions #### Query ```graphql query TenderTransactionList { tenderTransactions(first: 10) { nodes { id order { id } amount { amount currencyCode } user { id } test processedAt remoteReference paymentDetails: transactionDetails { ... on TenderTransactionCreditCardDetails { creditCardCompany creditCardNumber } } paymentMethod } } } ``` #### cURL ```bash curl -X POST \ https://your-development-store.myshopify.com/admin/api/2026-01/graphql.json \ -H 'Content-Type: application/json' \ -H 'X-Shopify-Access-Token: {access_token}' \ -d '{ "query": "query TenderTransactionList { tenderTransactions(first: 10) { nodes { id order { id } amount { amount currencyCode } user { id } test processedAt remoteReference paymentDetails: transactionDetails { ... on TenderTransactionCreditCardDetails { creditCardCompany creditCardNumber } } paymentMethod } } }" }' ``` #### React Router ```javascript import { authenticate } from "../shopify.server"; export const loader = async ({request}) => { const { admin } = await authenticate.admin(request); const response = await admin.graphql( `#graphql query TenderTransactionList { tenderTransactions(first: 10) { nodes { id order { id } amount { amount currencyCode } user { id } test processedAt remoteReference paymentDetails: transactionDetails { ... on TenderTransactionCreditCardDetails { creditCardCompany creditCardNumber } } paymentMethod } } }`, ); const json = await response.json(); return json.data; } ``` #### Ruby ```ruby session = ShopifyAPI::Auth::Session.new( shop: "your-development-store.myshopify.com", access_token: access_token ) client = ShopifyAPI::Clients::Graphql::Admin.new( session: session ) query = <<~QUERY query TenderTransactionList { tenderTransactions(first: 10) { nodes { id order { id } amount { amount currencyCode } user { id } test processedAt remoteReference paymentDetails: transactionDetails { ... on TenderTransactionCreditCardDetails { creditCardCompany creditCardNumber } } paymentMethod } } } QUERY response = client.query(query: query) ``` #### Node.js ```javascript const client = new shopify.clients.Graphql({session}); const data = await client.query({ data: `query TenderTransactionList { tenderTransactions(first: 10) { nodes { id order { id } amount { amount currencyCode } user { id } test processedAt remoteReference paymentDetails: transactionDetails { ... on TenderTransactionCreditCardDetails { creditCardCompany creditCardNumber } } paymentMethod } } }`, }); ``` #### Response ```json { "tenderTransactions": { "nodes": [ { "id": "gid://shopify/TenderTransaction/765446009", "order": { "id": "gid://shopify/Order/148977776" }, "amount": { "amount": "11.5", "currencyCode": "USD" }, "user": { "id": "gid://shopify/StaffMember/902541635" }, "test": false, "processedAt": "2005-07-31T15:57:11Z", "remoteReference": "1000", "paymentDetails": null, "paymentMethod": null } ] } } ```