GET api/{database}/BankAccountInfo/{organizationId}/{indexNumber}

Gets the specified BankAccountInfo.



Request Information

Parameters

NameDescriptionAdditional information
organizationId The organizationId.

Define this parameter in the request URI.

indexNumber The indexNumber.

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "accountholderName": "sample string 1",
  "bankAccount": "sample string 2",
  "bankName": "sample string 3",
  "bankTypeId": "sample string 4",
  "blocked": true,
  "countryId": "sample string 6",
  "iban": "sample string 7",
  "indexNumber": 8,
  "isPreferred": true,
  "organizationId": 10,
  "swiftAddress": "sample string 11"
}

application/xml, text/xml

Sample:
<BankAccountInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UNIT4.Multivers.API.BL.CRM.Info">
  <AccountholderName>sample string 1</AccountholderName>
  <BankAccount>sample string 2</BankAccount>
  <BankName>sample string 3</BankName>
  <BankTypeId>sample string 4</BankTypeId>
  <Blocked>true</Blocked>
  <CountryId>sample string 6</CountryId>
  <Iban>sample string 7</Iban>
  <IndexNumber>8</IndexNumber>
  <IsPreferred>true</IsPreferred>
  <OrganizationId>10</OrganizationId>
  <SwiftAddress>sample string 11</SwiftAddress>
</BankAccountInfo>