Payments

Order payment transactions — gross, refunded and net payments by gateway, kind and status.

24 fields — 18 dimensions, 6 metrics. Date clauses (SINCE, UNTIL, DURING) use processedAt.

The live, authoritative list is always GET /v1/datasets — this page is regenerated from the same catalog, but the endpoint reflects exactly what is deployed.

Query it

FROM payments
  SHOW transactions
  GROUP BY payment_gateway
  SINCE -30d

See Querying with SoloQL for the language.

This dataset is queryable through SoloQL; it has no record-retrieval endpoint.

Fields

FieldTypeRoleDescription
payment_gatewaystringdimensionPayment gateway used for the transaction.
is_shop_pay_transactionbooleandimensionWhether the payment came through Shop Pay. Blank on transactions with no digital wallet.
is_shop_channel_transactionbooleandimensionWhether Shopify counts the transaction as a Shop-channel sale. Blank means we could not ask the store, which is not the same as no.
transaction_sale_typestringdimensionHow the sale reached Shopify's Shop channel, such as Shop App. Blank means we could not ask the store, which is not the same as none.
gateway_handlestringdimensionRaw gateway identifier (shopify_payments, gift_card, manual) — the machine name behind Payment gateway.
payment_methodstringdimensionPayment method behind the gateway — card brand, local method, or Shop Pay Installments.
transaction_kindstringdimensionTransaction kinds include sale, authorization, capture, refund, etc.
transaction_statusstringdimensionStatus of the transaction, such as success, pending, or failure.
transaction_ididdimensionShopify identifier for the transaction.
order_ididdimensionShopify identifier for the order.
order_namestringdimensionName or number of an order (customer-facing).
transaction_currencystringdimensionSettlement currency of the transaction.
is_testbooleandimensionWhether the transaction was a test transaction.
processed_atdatedimensionWhen the payment was processed.
created_atdatedimensionWhen the transaction record was created.
transactionsnumbermetricNumber of payment transactions (document count).
transaction_amountmoneymetricAmount of all payment transactions.
gross_paymentsmoneymetricAmount of payments before any refunds.
refunded_paymentsmoneymetricAmount of refunded payments, as a negative amount.
orders_with_transactionsnumbermetricDistinct orders that have at least one transaction in the group.
net_paymentsmoneymetricAmount of payments after any refunds.
storestringdimensionThe shop the record belongs to. Filter with WHERE store IN ('Shop name') or GROUP BY store.
store_idstringdimensionThe shop's raw identifier — what an export or the API reports. Same shops as Store, shown as ids.
store_domainstringdimensionThe shop's myshopify.com domain. Filter with WHERE store_domain = 'shop.myshopify.com'.