Payouts

Shopify Payments payouts — net deposits and their charge, fee, refund and adjustment breakdown.

12 fields — 6 dimensions, 6 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 payouts
  SHOW payout_count
  GROUP BY status
  SINCE -30d

See Querying with SoloQL for the language.

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

Fields

FieldTypeRoleDescription
statusstringdimensionTransfer status (scheduled, in transit, paid, failed, canceled).
transaction_typestringdimensionDirection of the payout (deposit or withdrawal).
currencystringdimensionCurrency of the net payout amount.
issued_atdatedimensionWhen the payout was issued (the bank transfer date).
created_atdatedimensionWhen the payout record was created.
payout_countnumbermetricNumber of payouts in the group (document count — value_count on createdAt). Sums across stores.
net_amountmoneymetricNet amount deposited (or withdrawn) — gross minus all fees.
gross_chargesmoneymetricGross charge amount included in the payout.
feesmoneymetricProcessing fees on charges in the payout.
refund_feesmoneymetricFees on refunds included in the payout.
adjustmentsmoneymetricGross adjustment amount (e.g. disputes) in the payout.
storestringdimensionThe shop the record belongs to. Filter with WHERE store IN ('Shop name') or GROUP BY store.