Payments

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

17 fields — 12 dimensions, 5 metrics. Date clauses (SINCE, UNTIL, DURING) use createdAt.

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.
gateway_handlestringdimensionRaw gateway identifier (shopify_payments, gift_card, manual) — the machine name behind Payment gateway.
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.
net_paymentsmoneymetricAmount of payments after any refunds.
storestringdimensionThe shop the record belongs to. Filter with WHERE store IN ('Shop name') or GROUP BY store.