Flipdish · Schema
GetReceiptByOrderIdQueryResponse
GetReceiptByOrderIdQueryResponse schema from Flipdish API - Payments.
RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks
Properties
| Name | Type | Description |
|---|---|---|
| PreviousOrder | object | |
| DepositReturnFeesSummary | array | |
| TsRequestedForLocal | string | |
| TsOrderPlacedLocal | string | |
| LogoUrl | string | |
| Address | string | |
| VatNumber | string | |
| PaymentMethodDescription | string | |
| OrgId | string | |
| CountryCode | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-schema/payments-get-receipt-by-order-id-query-response-schema.json",
"title": "GetReceiptByOrderIdQueryResponse",
"description": "GetReceiptByOrderIdQueryResponse schema from Flipdish API - Payments.",
"type": "object",
"properties": {
"PreviousOrder": {
"$ref": "#/components/schemas/PreviousOrder"
},
"DepositReturnFeesSummary": {
"type": "array",
"items": {
"$ref": "#/components/schemas/DepositReturnFeesSummary"
},
"example": []
},
"TsRequestedForLocal": {
"format": "date-time",
"type": "string",
"example": "2026-06-02T12:00:00Z"
},
"TsOrderPlacedLocal": {
"format": "date-time",
"type": "string",
"example": "2026-06-02T12:00:00Z"
},
"LogoUrl": {
"type": "string",
"example": "https://api.flipdish.co/example"
},
"Address": {
"type": "string",
"example": "string"
},
"VatNumber": {
"type": "string",
"example": "string"
},
"PaymentMethodDescription": {
"type": "string",
"example": "string"
},
"OrgId": {
"type": "string",
"example": "500123"
},
"CountryCode": {
"type": "string",
"example": "IE"
}
}
}