Flipdish · Schema

ProcessingFeeConfig

Processing fee config

RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

Properties

Name Type Description
StoreId integer Store Id
PaymentAccountType string Payment account type
PercentFee number Percent fee to customer, including VAT
FixedFee number Fixed fee to customer, including VAT
View JSON Schema on GitHub

JSON Schema

stores-processing-fee-config-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/stores-processing-fee-config-schema.json",
  "title": "ProcessingFeeConfig",
  "description": "Processing fee config",
  "type": "object",
  "properties": {
    "StoreId": {
      "format": "int32",
      "description": "Store Id",
      "type": "integer",
      "example": 500123
    },
    "PaymentAccountType": {
      "description": "Payment account type",
      "enum": [
        "Card",
        "Cash",
        "Ideal",
        "Bancontact",
        "Giropay",
        "Eps",
        "Emv",
        "PayPal",
        "PayGreen",
        "GoogleWalletToken"
      ],
      "type": "string",
      "example": "Card"
    },
    "PercentFee": {
      "format": "double",
      "description": "Percent fee to customer, including VAT",
      "type": "number",
      "example": 12.5
    },
    "FixedFee": {
      "format": "double",
      "description": "Fixed fee to customer, including VAT",
      "type": "number",
      "example": 12.5
    }
  }
}