GET api/Gadget/GetBanks

Return the list of banks of authenticated user.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Dictionary of globally unique identifier [key] and string [value]

Response Formats

application/json, text/json

Sample:
{
  "e49d3215-44c3-4c0f-990d-e266d71f0ada": "sample string 2",
  "60dc1d06-caca-4f7c-bafd-b9bce7f661b1": "sample string 4"
}

application/xml, text/xml

Sample:
<ArrayOfKeyValueOfguidstring xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
  <KeyValueOfguidstring>
    <Key>e49d3215-44c3-4c0f-990d-e266d71f0ada</Key>
    <Value>sample string 2</Value>
  </KeyValueOfguidstring>
  <KeyValueOfguidstring>
    <Key>60dc1d06-caca-4f7c-bafd-b9bce7f661b1</Key>
    <Value>sample string 4</Value>
  </KeyValueOfguidstring>
</ArrayOfKeyValueOfguidstring>