SalePayout

Your payout for a sale and its transfer timeline.

  • amount
    Type: object · Moneynullable
    required

    What you receive for this order, after the seller fee. null until it is calculated.

    A monetary amount as a decimal in the currency's major unit paired with its currency code — { amount: 14.99, currency: "USD" } means $14.99.

    • amount
      Type: number
      required

      Decimal amount in the currency's major unit (e.g. 5.23 for €5.23). 2 decimal places for EUR/USD/GBP/CHF/CAD/AUD.

    • currency
      Type: string enum
      required
      values
      • USD

        US Dollar.

      • EUR

        Euro.

      • GBP

        British Pound.

      • CAD

        Canadian Dollar.

      • CHF

        Swiss Franc.

  • eligibleAt
    Type: string · DateStringFormat: date-timenullable
    required

    When the payout becomes eligible for transfer. null when not yet set.

    An ISO 8601 date-time in UTC, e.g. 2024-08-14T10:23:11.000Z.

  • paidOutAt
    Type: string · DateStringFormat: date-timenullable
    required

    When the payout was transferred to you. null until paid out.

    An ISO 8601 date-time in UTC, e.g. 2024-08-14T10:23:11.000Z.

Examples
{
  "amount": {
    "amount": 12.05,
    "currency": "EUR"
  },
  "eligibleAt": "2026-06-21T09:12:00.000Z",
  "paidOutAt": null
}