GET api/LookUpCust/GetBranchesByCode?bankCode={bankCode}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
bankCode

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of BankBranches
NameDescriptionTypeAdditional information
BankBranches_code

integer

None.

bankCode

string

String length: inclusive between 0 and 4

branchNumber

string

String length: inclusive between 0 and 3

branchName

string

String length: inclusive between 0 and 16

Response Formats

application/json, text/json

Sample:
[
  {
    "BankBranches_code": 1,
    "bankCode": "sample string 2",
    "branchNumber": "sample string 3",
    "branchName": "sample string 4"
  },
  {
    "BankBranches_code": 1,
    "bankCode": "sample string 2",
    "branchNumber": "sample string 3",
    "branchName": "sample string 4"
  }
]

application/xml, text/xml

Sample:
<ArrayOfBankBranches xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CustDemog">
  <BankBranches>
    <BankBranches_code>1</BankBranches_code>
    <bankCode>sample string 2</bankCode>
    <branchName>sample string 4</branchName>
    <branchNumber>sample string 3</branchNumber>
  </BankBranches>
  <BankBranches>
    <BankBranches_code>1</BankBranches_code>
    <bankCode>sample string 2</bankCode>
    <branchName>sample string 4</branchName>
    <branchNumber>sample string 3</branchNumber>
  </BankBranches>
</ArrayOfBankBranches>

application/bson

Sample:
Binary JSON content. See http://bsonspec.org for details.