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:
{
  "e729dd0e-b5fc-4786-8079-1296625688b7": "sample string 2",
  "eb805e05-49ce-4684-a07a-d9b61d70fc9f": "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>e729dd0e-b5fc-4786-8079-1296625688b7</Key>
    <Value>sample string 2</Value>
  </KeyValueOfguidstring>
  <KeyValueOfguidstring>
    <Key>eb805e05-49ce-4684-a07a-d9b61d70fc9f</Key>
    <Value>sample string 4</Value>
  </KeyValueOfguidstring>
</ArrayOfKeyValueOfguidstring>