Skip to content

Latest commit

 

History

History
56 lines (48 loc) · 1.27 KB

checkout-merchant-settings.md

File metadata and controls

56 lines (48 loc) · 1.27 KB

Checkout Merchant Settings

Structure

CheckoutMerchantSettings

Fields

Name Type Tags Description
paymentMethods CheckoutMerchantSettingsPaymentMethods | undefined Optional -
updatedAt string | undefined Optional The timestamp when the settings were last updated, in RFC 3339 format.
Examples for January 25th, 2020 6:25:34pm Pacific Standard Time:
UTC: 2020-01-26T02:25:34Z
Pacific Standard Time with UTC offset: 2020-01-25T18:25:34-08:00

Example (as JSON)

{
  "payment_methods": {
    "apple_pay": {
      "enabled": false
    },
    "google_pay": {
      "enabled": false
    },
    "cash_app": {
      "enabled": false
    },
    "afterpay_clearpay": {
      "order_eligibility_range": {
        "min": {
          "amount": 34,
          "currency": "ISK"
        },
        "max": {
          "amount": 140,
          "currency": "OMR"
        }
      },
      "item_eligibility_range": {
        "min": {
          "amount": 34,
          "currency": "ISK"
        },
        "max": {
          "amount": 140,
          "currency": "OMR"
        }
      },
      "enabled": false
    }
  },
  "updated_at": "updated_at0"
}