> Portal Navigation:
> 
> - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version.
> - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages).
> - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`).
> - Top-level index of all portals: https://dev.wix.com/docs/llms.txt
> - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt

# Resource: Gpv Payout V1

# Type: Gpv Payout Object

# Link: https://dev.wix.com/docs/api-reference/account-level/studio-workspace/earnings/gpv-payout-v1/gpv-payout-object.md

## Description: A GpvPayout is a revenue-share payout derived from gross payment volume (GPV):
the total payment volume processed across the sites a partner manages. Wix
generates GpvPayouts automatically, creating one payout per transaction date
and updating it in place as volume accrues. Partners read GpvPayouts to see
what they earned and whether each payout was invoiced. All monetary values are
in USD.

## Schema:

```json
 Type: Gpv Payout Object | type: GpvPayout
 Description: A GpvPayout is a revenue-share payout derived from gross payment volume (GPV):
the total payment volume processed across the sites a partner manages. Wix
generates GpvPayouts automatically, creating one payout per transaction date
and updating it in place as volume accrues. Partners read GpvPayouts to see
what they earned and whether each payout was invoiced. All monetary values are
in USD.
       - name: id  | type: string | description: GpvPayout ID.
           - name: value  | type: string | description: 
       - name: revision  | type: string | description: Revision number, which increments by 1 each time the GpvPayout is updated. To prevent conflicting changes, the current revision must be passed when updating the GpvPayout.
           - name: value  | type: string | description: 
       - name: createdDate  | type: string | description: Date and time the payout record was created in Wix's systems. This is record bookkeeping, not the day the volume was processed. For that, use `transactionDate`.
           - name: seconds  | type: string | description: 
           - name: nanos  | type: number | description: 
       - name: updatedDate  | type: string | description: Date and time the payout record was last updated, for example when more volume accrued for the day. Not the day the volume was processed. For that, use `transactionDate`.
       - name: transactionDate  | type: string | description: Day the payout is attributed to. Wix maintains a single GpvPayout per `transactionDate`, updating it as volume accrues, so payouts are returned as a flat list of days. Group them client-side if you need monthly totals.
       - name: gpv  | type: number | description: Total gross payment volume (GPV) processed across the partner's sites for the transaction date, in USD. Labeled `Client sales` in the Wix Studio dashboard.
           - name: value  | type: number | description: 
       - name: amount  | type: number | description: Amount earned by the partner for this payout, in USD. Calculated as `gpv` multiplied by `paymentRevenueSharePercent`, divided by 100.
       - name: paymentRevenueSharePercent  | type: number | description: Revenue-share rate applied to `gpv` to calculate `amount`. The value is a fractional percent: `0.05` means 0.05% (not 5%), so `amount` = `gpv` * `paymentRevenueSharePercent` / 100. Wix sets the rate automatically based on daily GPV: `0.05` (0.05%) when daily GPV is at or below `2000` USD, and `0.1` (0.1%) when daily GPV is above `2000` USD.
       - name: sitesGpv  | type: Array<SiteGpv> | description: The sites whose GPV contributed to this payout, up to 200 sites, each with the volume it contributed. The Wix Studio dashboard shows only the number of sites and the first few site names, so this breakdown is more detailed than the dashboard's.
           - name: metaSiteId  | type: string | description: ID of the site.
           - name: gpvInUsd  | type: number | description: Gross payment volume processed on the site, in USD.
           - name: siteName  | type: string | description: Name of the site, captured when Wix last calculated this payout. A payout's day is recalculated while volume is still accruing, so a site renamed during that window can show the newer name; once the day is settled the name stops changing. Truncated to 200 UTF-16 code units, so a name using emoji or a non-Latin script can be cut shorter than 200 visible characters. The cut never splits a surrogate pair, but it can split a longer sequence such as an emoji built from several joined characters. Best effort - it may be empty, and it's always empty on payouts created before Wix started capturing it. Use `metaSiteId` as the stable key.
       - name: invoiceId  | type: string | description: ID of the invoice this payout was included in. Empty until the payout is invoiced.  This is the reference code of the partner's invoice. To resolve it, query the Materialized Invoices API for the materialized invoice whose `invoicesRefCodes` contains this value, and read that invoice's `status` to see whether it was paid.

```