PayPal · Schema

Balances Response

The balances response information.

BillingCommerceDisputesInvoicesOrdersPaymentsPayoutsSubscriptionsTokensWebhooks

Properties

Name Type Description
balances array An array of balance detail objects.
account_id object
as_of_time object The requested date and time or the last date and time when the balances can be served, in [Internet date and time format](https://tools.ietf.org/html/rfc3339#section-5.6).
last_refresh_time object The date and time when the balances was last refreshed, in [Internet date and time format](https://tools.ietf.org/html/rfc3339#section-5.6).
View JSON Schema on GitHub

JSON Schema

paypal-balances-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/balances_response",
  "title": "Balances Response",
  "type": "object",
  "description": "The balances response information.",
  "properties": {
    "balances": {
      "type": "array",
      "description": "An array of balance detail objects.",
      "maxItems": 200,
      "minItems": 0,
      "items": {
        "$ref": "#/components/schemas/balance_detail"
      }
    },
    "account_id": {
      "$ref": "#/components/schemas/account_id"
    },
    "as_of_time": {
      "description": "The requested date and time or the last date and time when the balances can be served, in [Internet date and time format](https://tools.ietf.org/html/rfc3339#section-5.6).",
      "$ref": "#/components/schemas/date_time"
    },
    "last_refresh_time": {
      "description": "The date and time when the balances was last refreshed, in [Internet date and time format](https://tools.ietf.org/html/rfc3339#section-5.6).",
      "$ref": "#/components/schemas/date_time"
    }
  }
}