Details about assigning a product to a specific channel.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UpsertListingWithoutListingIdReq", "title": "UpsertListingWithoutListingIdReq", "type": "object", "description": "Details about assigning a product to a specific channel.", "properties": { "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": [ "product_id", "state", "variants" ], "x-internal": false }