PUT /self/{shopId}/products/bulk/update/customer-note
Body
-
productIds array[integer(int64)] | null
-
note string | null
PUT /self/{shopId}/products/bulk/update/customer-note
curl \
-X PUT https://dev.sellpass.io/self/{shopId}/products/bulk/update/customer-note \
-H "Authorization: $API_KEY" \
-H "Content-Type: application/json" \
-d '{"productIds":[42],"note":"string"}'
Request example
{
"productIds": [
42
],
"note": "string"
}
Request examples
{
"productIds": [
42
],
"note": "string"
}