curl --request PATCH \
--url https://api.shoppex.io/dev/v1/products/order \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"product_ids": [
"<string>"
]
}
'{
"data": {
"updated_count": 123
}
}Set the display order of products by providing an ordered array of product IDs
curl --request PATCH \
--url https://api.shoppex.io/dev/v1/products/order \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"product_ids": [
"<string>"
]
}
'{
"data": {
"updated_count": 123
}
}Use your API key with the Bearer scheme. Get your key from Dashboard → Settings → API Keys. Format: Authorization: Bearer shx_...
Array of product uniqids in desired order (first = highest priority)
1 - 500 elementsDefault Response
Show child attributes