The product update API allows you to send bulk product availability updates to Releva.
Request Parameters #
You may perform requests to the API using the following curl equivalent:
curl -H 'Content-Type: application/json' -H 'Authorization: Bearer <secretKey>' -XPOST https://releva.ai/api/v0/products/availability -d'{
"products": [
{
"id": "15",
"available": true,
},
{
"id": "10",
"available": false,
}
]
}'