PUT /self/{shopId}/products/bulk/update/visibility
Path parameters
-
shopId
integer(int32) Required
Body
-
productIds
array[integer(int64)] | null -
unlisted
boolean -
private
boolean -
onHold
boolean
PUT
/self/{shopId}/products/bulk/update/visibility
curl \
-X PUT https://dev.sellpass.io/self/{shopId}/products/bulk/update/visibility \
-H "Authorization: $API_KEY" \
-H "Content-Type: application/json" \
-d '{"productIds":[42],"unlisted":true,"private":true,"onHold":true}'
Request example
{
"productIds": [
42
],
"unlisted": true,
"private": true,
"onHold": true
}
Request examples
{
"productIds": [
42
],
"unlisted": true,
"private": true,
"onHold": true
}