VTEX · Schema

UpdateFeedRequest

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
affiliateId string Corresponds to the 3-digit [affiliate](https://help.vtex.com/en/tutorial/configuring-affiliates--tutorials_187) identification code created by the seller.
salesChannels string This attribute is created by the seller, in their VTEX store configuration.
View JSON Schema on GitHub

JSON Schema

vtex-updatefeedrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateFeedRequest",
  "title": "UpdateFeedRequest",
  "required": [
    "affiliateId",
    "salesChannels"
  ],
  "type": "object",
  "properties": {
    "affiliateId": {
      "type": "string",
      "description": "Corresponds to the 3-digit [affiliate](https://help.vtex.com/en/tutorial/configuring-affiliates--tutorials_187) identification code created by the seller.",
      "default": "MKP"
    },
    "salesChannels": {
      "type": "string",
      "description": "This attribute is created by the seller, in their VTEX store configuration.",
      "default": "1"
    }
  }
}