Mark Product Availability

Marks Product Availability

POST https://{workspace}.myeshopbox.com/product-engine/api/v2/productListing

This endpoint marks a product available or unavailable on one sales channel, subscribed by the workspace.

Headers

NameTypeDescription

Authentication

string

The Bearer token to grant access to the API

Request Body

NameTypeDescription

availability

boolean

true for marking available else false

channelCode

string

mark product availability on this sales channel

esin

string

ESIN of the product

{
	"esin" : "0SGAT12SG25F",
	"channelCode" : "CH1234",
	"availability" : false
}
curl --location --request POST 'https://{workspace}.myeshopbox.com/product-engine/api/v1/productListing' \
--header 'Authorization: Bearer AUTH_TOKEN' \
--header 'Content-Type: application/json' \
--data-raw '{
	"esin" : "0SGAT12SG25F",
	"channelCode" : "CH1234",
	"availability" : false
}'

Last updated