Flipdish · Schema

CreatePromotion

Create Promotion

RestaurantOnline OrderingMobile AppsPoint-of-SaleOrderMenusPaymentsWebhook

Properties

Name Type Description
Name string Promotion Name
MenuItemPublicIds array Promotion Menu Item Awards
View JSON Schema on GitHub

JSON Schema

marketing-create-promotion-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-schema/marketing-create-promotion-schema.json",
  "title": "CreatePromotion",
  "description": "Create Promotion",
  "type": "object",
  "properties": {
    "Name": {
      "description": "Promotion Name",
      "type": "string",
      "example": "Example Name"
    },
    "MenuItemPublicIds": {
      "description": "Promotion Menu Item Awards",
      "type": "array",
      "items": {
        "format": "uuid",
        "type": "string",
        "example": "00000000-0000-0000-0000-000000000000"
      },
      "example": [
        "00000000-0000-0000-0000-000000000000"
      ]
    }
  }
}