GET 17.0/database/bankaccounts/{id}

Description

Retrieve Bank Accounts

URI Parameters

Name Description Type Additional information
id

integer

Required

None.

None.

Name Description Type Additional information
ID

integer

None.

Description

string

String length: inclusive between 0 and 30

BankingWith

byte

None.

OpeningBalance

decimal number

None.

OpeningBalanceDate

date

None.

AccountName

string

String length: inclusive between 0 and 50

AccountSortCode

string

String length: inclusive between 0 and 10

AccountNumber

string

String length: inclusive between 0 and 25

AccountIBAN

string

String length: inclusive between 0 and 50

AccountSwiftBIC

string

String length: inclusive between 0 and 12

CompanyID

integer

None.

InvoiceFooterText

string

String length: inclusive between 0 and 4000

InActive

byte

None.

application/json, text/json

Sample:
{
  "id": 1,
  "description": "sample string 2",
  "bankingWith": 64,
  "openingBalance": 4.0,
  "openingBalanceDate": "2025-01-09T20:48",
  "accountName": "sample string 6",
  "accountSortCode": "sample string 7",
  "accountNumber": "sample string 8",
  "accountIBAN": "sample string 9",
  "accountSwiftBIC": "sample string 10",
  "companyID": 11,
  "invoiceFooterText": "sample string 12",
  "inActive": 64
}

application/xml, text/xml

Sample:
<BankAccounts xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ID>1</ID>
  <Description>sample string 2</Description>
  <BankingWith>64</BankingWith>
  <OpeningBalance>4</OpeningBalance>
  <OpeningBalanceDate>2025-01-09T20:48:21.9133297+00:00</OpeningBalanceDate>
  <AccountName>sample string 6</AccountName>
  <AccountSortCode>sample string 7</AccountSortCode>
  <AccountNumber>sample string 8</AccountNumber>
  <AccountIBAN>sample string 9</AccountIBAN>
  <AccountSwiftBIC>sample string 10</AccountSwiftBIC>
  <CompanyID>11</CompanyID>
  <InvoiceFooterText>sample string 12</InvoiceFooterText>
  <InActive>64</InActive>
</BankAccounts>