Deliverect Mark Products Out of Stock by Tag
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/deliverect/refs/heads/main/json-schema/store-api-post-mark-products-out-of-stock-by-tag-schema.json", "title": "PostMarkProductsOutOfStockByTag", "description": "Deliverect Mark Products Out of Stock by Tag", "type": "object", "properties": { "account": { "type": "string", "example": "string" }, "location": { "type": "string", "example": "string" }, "tag": { "type": "array", "items": { "type": "integer", "example": 1 } }, "snoozeStart": { "type": "string", "example": "string" }, "snoozeEnd": { "type": "string", "example": "string" } }, "required": [ "account", "snoozeEnd", "snoozeStart", "tag", "location" ] }