Deliverect · Schema

PostMarkProductsOutOfStockByTag

Deliverect Mark Products Out of Stock by Tag

RestaurantDeliveryOnline OrderingPoint-of-SaleOrder ManagementIntegration

Properties

Name Type Description
account string
location string
tag array
snoozeStart string
snoozeEnd string
View JSON Schema on GitHub

JSON Schema

store-api-post-mark-products-out-of-stock-by-tag-schema.json Raw ↑
{
  "$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"
  ]
}