Home
Flipdish
Platform Bank Account Structure
Platform Bank Account Structure
BANK ACCOUNT
Type: object
Properties: 14
Restaurant Online Ordering Mobile Apps Point of Sale Orders Menu Payments Webhooks
BankAccount is a JSON Structure definition published by Flipdish, describing 14 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.
Properties
Id
AccountName
Iban
Swift
PopulatedAccountFields
AccountState
StoreNames
StoreIds
BankAddress
BankCountryCode
AccountHolderAddress
AccountHolderCountryCode
VatNumber
StripeAccountId
Meta-schema: https://json-structure.org/meta/core/v0/#
JSON Structure
{
"$schema": "https://json-structure.org/meta/core/v0/#",
"$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-structure/platform-bank-account-structure.json",
"name": "BankAccount",
"description": "BANK ACCOUNT",
"type": "object",
"properties": {
"Id": {
"description": "Id of this account",
"type": "int32",
"example": 500123
},
"AccountName": {
"description": "Name of this account",
"type": "string",
"example": "Example Name"
},
"Iban": {
"description": "IBAN of this account",
"type": "string",
"example": "string"
},
"Swift": {
"description": "SWIFT of this bank account",
"type": "string",
"example": "string"
},
"PopulatedAccountFields": {
"description": "A list of one or more populated account fields (field key-value pairs).\r\nIf this list contains at least one item, the Iban, Swift and NationalClearingCode fields should be ignored.",
"type": "array",
"items": {
"$ref": "#/components/schemas/AccountFieldKeyValuePair"
},
"example": []
},
"AccountState": {
"description": "Status of Account",
"enum": [
"Unverified",
"AwatingVerification",
"Verified",
"Grandfathered"
],
"type": "string",
"example": "Unverified"
},
"StoreNames": {
"description": "Store Names that are attached to this account",
"type": "array",
"items": {
"type": "string"
},
"example": [
"Example Name"
]
},
"StoreIds": {
"description": "Store Ids that are attached to this account",
"type": "array",
"items": {
"type": "int32"
},
"example": [
1
]
},
"BankAddress": {
"description": "Address lf the bank",
"type": "string",
"example": "string"
},
"BankCountryCode": {
"description": "CountryCode of the Bank Account",
"type": "string",
"example": "IE"
},
"AccountHolderAddress": {
"description": "Account Holders Address",
"type": "string",
"example": "string"
},
"AccountHolderCountryCode": {
"description": "Account Holders Country Code",
"type": "string",
"example": "IE"
},
"VatNumber": {
"description": "Account Holders Vat Number",
"type": "string",
"example": "string"
},
"StripeAccountId": {
"description": "Stripe Id of the connected account",
"type": "string",
"example": "500123"
}
}
}