GET banking/banks?nbc={nbc}&swift={swift}&name={name}&country={country}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| nbc | string |
None. |
|
| swift | string |
None. |
|
| name | string |
None. |
|
| country | integer |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of Bank| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| CountryID | integer |
None. |
|
| Name | string |
None. |
|
| Code | string |
None. |
|
| NBC | string |
None. |
|
| SWIFT | string |
None. |
|
| BankingUrl | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID": 1,
"CountryID": 2,
"Name": "sample string 3",
"Code": "sample string 4",
"NBC": "sample string 5",
"SWIFT": "sample string 6",
"BankingUrl": "sample string 7"
},
{
"ID": 1,
"CountryID": 2,
"Name": "sample string 3",
"Code": "sample string 4",
"NBC": "sample string 5",
"SWIFT": "sample string 6",
"BankingUrl": "sample string 7"
}
]
text/xml
Sample:
<ArrayOfBank xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Pixfin.DTO.Banking">
<Bank>
<BankingUrl>sample string 7</BankingUrl>
<Code>sample string 4</Code>
<CountryID>2</CountryID>
<ID>1</ID>
<NBC>sample string 5</NBC>
<Name>sample string 3</Name>
<SWIFT>sample string 6</SWIFT>
</Bank>
<Bank>
<BankingUrl>sample string 7</BankingUrl>
<Code>sample string 4</Code>
<CountryID>2</CountryID>
<ID>1</ID>
<NBC>sample string 5</NBC>
<Name>sample string 3</Name>
<SWIFT>sample string 6</SWIFT>
</Bank>
</ArrayOfBank>