curl --request PATCH \
--url https://api.shoppex.io/dev/v1/products/bulk \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"product_ids": [
"<string>"
],
"update": {
"price": 1,
"currency": "<string>",
"stock": 123,
"unlisted": true,
"private": true,
"on_hold": true,
"sort_priority": 123
}
}
'{
"data": {
"updated_count": 123,
"product_ids": [
"<string>"
]
}
}Update multiple products at once with the same values
curl --request PATCH \
--url https://api.shoppex.io/dev/v1/products/bulk \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"product_ids": [
"<string>"
],
"update": {
"price": 1,
"currency": "<string>",
"stock": 123,
"unlisted": true,
"private": true,
"on_hold": true,
"sort_priority": 123
}
}
'{
"data": {
"updated_count": 123,
"product_ids": [
"<string>"
]
}
}Use your API key with the Bearer scheme. Get your key from Dashboard → Settings → API Keys. Format: Authorization: Bearer shx_...
Default Response
Show child attributes