GET banking/banks/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
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"
}
text/xml
Sample:
<Bank xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Pixfin.DTO.Banking"> <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>