Payouts

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

15 fields — 8 dimensions, 7 metrics. Date clauses (SINCE, UNTIL, DURING) use issuedAt.

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.
payout_amountmoneymetricAmount deposited to the bank account — the payout's net, dated by its issue date.
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.
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'.