GET api/currency/banks?name={name}

Returns all of the banks with names containing the specified substring.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
name

Bank name to search for as a substring.

string

None.

Body Parameters

None.

Response Information

Resource Description

Collection of TextValueDTO
NameDescriptionTypeAdditional information
text

Text value.

string

None.

value

ID uniquiely identifying the text value.

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "text": "sample string 1",
    "value": 2
  },
  {
    "text": "sample string 1",
    "value": 2
  }
]

text/html

Sample:
[{"text":"sample string 1","value":2},{"text":"sample string 1","value":2}]

application/xml, text/xml

Sample:
<ArrayOfTextValueDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Common.WebAPI.DTOs">
  <TextValueDTO>
    <text>sample string 1</text>
    <value>2</value>
  </TextValueDTO>
  <TextValueDTO>
    <text>sample string 1</text>
    <value>2</value>
  </TextValueDTO>
</ArrayOfTextValueDTO>