Flipdish · Schema

PayoutReport3OverviewHeader

PayoutReport3OverviewHeader schema from Flipdish API - Payments.

RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

Properties

Name Type Description
PayoutId integer
BankAccountId integer
IsManualPayout boolean
AccountName string
PayoutStatus string
CreatedDate string
PeriodStartTime string
PeriodEndTime string
DestinationBank string
DestinationAccount string
Amount number
Currency string
BankAccountHasChanged boolean
View JSON Schema on GitHub

JSON Schema

payments-payout-report3-overview-header-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/payments-payout-report3-overview-header-schema.json",
  "title": "PayoutReport3OverviewHeader",
  "description": "PayoutReport3OverviewHeader schema from Flipdish API - Payments.",
  "type": "object",
  "properties": {
    "PayoutId": {
      "format": "int32",
      "type": "integer",
      "example": 500123
    },
    "BankAccountId": {
      "format": "int32",
      "type": "integer",
      "example": 500123
    },
    "IsManualPayout": {
      "type": "boolean",
      "example": true
    },
    "AccountName": {
      "type": "string",
      "example": "Example Name"
    },
    "PayoutStatus": {
      "type": "string",
      "example": "Active"
    },
    "CreatedDate": {
      "format": "date-time",
      "type": "string",
      "example": "2026-06-02T12:00:00Z"
    },
    "PeriodStartTime": {
      "format": "date-time",
      "type": "string",
      "example": "2026-06-02T12:00:00Z"
    },
    "PeriodEndTime": {
      "format": "date-time",
      "type": "string",
      "example": "2026-06-02T12:00:00Z"
    },
    "DestinationBank": {
      "type": "string",
      "example": "string"
    },
    "DestinationAccount": {
      "type": "string",
      "example": "string"
    },
    "Amount": {
      "format": "double",
      "type": "number",
      "example": 12.5
    },
    "Currency": {
      "type": "string",
      "example": "EUR"
    },
    "BankAccountHasChanged": {
      "type": "boolean",
      "example": true
    }
  }
}