POST 17.0/database/contactbankdetails

Description

Create Contact Bank Details

URI Parameters

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": 1,
  "name": "sample string 1",
  "sortCode": "sample string 2",
  "number": "sample string 3",
  "reference": "sample string 4",
  "iban": "sample string 5",
  "swiftBIC": "sample string 6"
}

application/xml, text/xml

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

application/x-www-form-urlencoded

Sample:

Sample not available.

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>