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
| Field | Type | Role | Description |
|---|---|---|---|
status | string | dimension | Transfer status (scheduled, in transit, paid, failed, canceled). |
transaction_type | string | dimension | Direction of the payout (deposit or withdrawal). |
currency | string | dimension | Currency of the net payout amount. |
issued_at | date | dimension | When the payout was issued (the bank transfer date). |
created_at | date | dimension | When the payout record was created. |
payout_count | number | metric | Number of payouts in the group (document count — value_count on createdAt). Sums across stores. |
net_amount | money | metric | Net amount deposited (or withdrawn) — gross minus all fees. |
gross_charges | money | metric | Gross charge amount included in the payout. |
fees | money | metric | Processing fees on charges in the payout. |
refund_fees | money | metric | Fees on refunds included in the payout. |
adjustments | money | metric | Gross adjustment amount (e.g. disputes) in the payout. |
store | string | dimension | The shop the record belongs to. Filter with WHERE store IN ('Shop name') or GROUP BY store. |