VTEX · Schema

PaymentMethod

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
paymentAccountId string
paymentSystem string
installments integer
View JSON Schema on GitHub

JSON Schema

vtex-paymentmethodresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PaymentMethodResponse",
  "title": "PaymentMethod",
  "required": [
    "paymentSystem"
  ],
  "type": "object",
  "properties": {
    "paymentAccountId": {
      "type": "string",
      "nullable": true
    },
    "paymentSystem": {
      "type": "string",
      "nullable": true
    },
    "installments": {
      "type": "integer",
      "format": "int32",
      "nullable": true
    }
  },
  "additionalProperties": false
}