GET 17.0/database/contactbankdetails/{contactid}/{bankid}

Description

Retrieve Contact Bank Details

URI Parameters

Name Description Type Additional information
contactID

integer

Required

bankID

integer

Required

None.

None.

Name Description Type Additional information
ContactID

integer

None.

BankID

integer

None.

Name

string

String length: inclusive between 0 and 50

SortCode

string

String length: inclusive between 0 and 10

Number

string

String length: inclusive between 0 and 25

Reference

string

String length: inclusive between 0 and 50

IBAN

string

String length: inclusive between 0 and 50

SwiftBIC

string

String length: inclusive between 0 and 12

application/json, text/json

Sample:
{
  "contactID": 1,
  "bankID": 2,
  "name": "sample string 3",
  "sortCode": "sample string 4",
  "number": "sample string 5",
  "reference": "sample string 6",
  "iban": "sample string 7",
  "swiftBIC": "sample string 8"
}

application/xml, text/xml

Sample:
<ContactBankDetails xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ContactID>1</ContactID>
  <BankID>2</BankID>
  <Name>sample string 3</Name>
  <SortCode>sample string 4</SortCode>
  <Number>sample string 5</Number>
  <Reference>sample string 6</Reference>
  <IBAN>sample string 7</IBAN>
  <SwiftBIC>sample string 8</SwiftBIC>
</ContactBankDetails>