VTEX · Schema

Upsert merchant connection

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
isActive boolean
affiliateId string
View JSON Schema on GitHub

JSON Schema

vtex-upsertmerchantconnection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/upsertMerchantConnection",
  "title": "Upsert merchant connection",
  "required": [
    "isActive",
    "affiliateId"
  ],
  "type": "object",
  "properties": {
    "isActive": {
      "type": "boolean",
      "default": false
    },
    "affiliateId": {
      "type": "string",
      "default": ""
    }
  }
}