There is no need to update the whole product/variant data structure if only availability or status have changed.
Maximum size of batch is 1000 items.
POST
/availability
curl \
--request POST 'https://mpapi.proxy.omnicado.com/v1/availability?client_id=yourClientId&client_id=api_token_value' \
--header "Content-Type: application/json" \
--header "X-Application-Name: myApplicationName" \
--data '[{"id":"233-45s","status":"A","in_stock":23}]'
Request examples
# Headers
X-Application-Name: myApplicationName
# Payload
[
{
"id": "233-45s",
"status": "A",
"in_stock": 23
}
]