BigCommerce · Schema

UpsertListingWithListingIdReq

Details about assigning a product to a specific channel.

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
listing_id object
product_id object
external_id object
state object
name object
description object
variants object
View JSON Schema on GitHub

JSON Schema

bigcommerce-upsertlistingwithlistingidreq-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpsertListingWithListingIdReq",
  "title": "UpsertListingWithListingIdReq",
  "type": "object",
  "description": "Details about assigning a product to a specific channel.",
  "properties": {
    "listing_id": {
      "$ref": "#/components/schemas/ListingId"
    },
    "product_id": {
      "$ref": "#/components/schemas/ProductId"
    },
    "external_id": {
      "$ref": "#/components/schemas/ExternalId"
    },
    "state": {
      "$ref": "#/components/schemas/ListingState"
    },
    "name": {
      "$ref": "#/components/schemas/ChannelProductName"
    },
    "description": {
      "$ref": "#/components/schemas/ChannelProductDescription"
    },
    "variants": {
      "$ref": "#/components/schemas/ChannelProductMultipleVariants"
    }
  },
  "required": [
    "listing_id",
    "product_id",
    "state",
    "variants"
  ],
  "x-internal": false
}