Bolt · Schema

account

CheckoutPaymentseCommerceOne-Click CheckoutShopper NetworkFraud Protection

Properties

Name Type Description
addresses array A list of addresses associated with this account. These can be considered the "shipping addresses". The account's visible addresses are filtered according to the configured shipping destinations in yo
payment_methods array A list of payment methods associated with this account. The account's visible payment methods are filtered to include only cards that are chargeable.
profile object
View JSON Schema on GitHub

JSON Schema

account.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.bolt.com/schemas/account",
  "title": "account",
  "type": "object",
  "required": [
    "addresses",
    "payment_methods"
  ],
  "properties": {
    "addresses": {
      "type": "array",
      "description": "A list of addresses associated with this account. These can be considered the \"shipping addresses\". The account's visible addresses are filtered according to the configured shipping destinations in your Bolt merchant dashboard. If no account addresses are available, use the billing address of the selected payment method.",
      "items": {
        "$ref": "#/components/schemas/address-listing"
      }
    },
    "payment_methods": {
      "type": "array",
      "description": "A list of payment methods associated with this account. The account's visible payment methods are filtered to include only cards that are chargeable.",
      "items": {
        "$ref": "#/components/schemas/payment-method"
      }
    },
    "profile": {
      "$ref": "#/components/schemas/profile"
    }
  }
}