Flipdish · Schema

CreatePayGreenConfigurationRequest

CreatePayGreenConfigurationRequest.

RestaurantOnline OrderingMobile AppsPoint-of-SaleOrderMenusPaymentsWebhook

Properties

Name Type Description
Name string Name.
PayGreenId string PayGreenId.
PayGreenPrivateKey string PayGreenPrivateKey.
AssignedStores array AssignedStores.
View JSON Schema on GitHub

JSON Schema

marketing-create-pay-green-configuration-request-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-pay-green-configuration-request-schema.json",
  "title": "CreatePayGreenConfigurationRequest",
  "description": "CreatePayGreenConfigurationRequest.",
  "type": "object",
  "properties": {
    "Name": {
      "description": "Name.",
      "type": "string",
      "example": "Example Name"
    },
    "PayGreenId": {
      "description": "PayGreenId.",
      "type": "string",
      "example": "500123"
    },
    "PayGreenPrivateKey": {
      "description": "PayGreenPrivateKey.",
      "type": "string",
      "example": "string"
    },
    "AssignedStores": {
      "description": "AssignedStores.",
      "type": "array",
      "items": {
        "format": "int32",
        "type": "integer"
      },
      "example": [
        1
      ]
    }
  }
}