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:
{
  "b1b79a89-76c4-4cfd-8d60-7701beaea6a7": "sample string 2",
  "1a813c8c-d0ba-4bc0-88ce-9eb8f737cb92": "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>b1b79a89-76c4-4cfd-8d60-7701beaea6a7</Key>
    <Value>sample string 2</Value>
  </KeyValueOfguidstring>
  <KeyValueOfguidstring>
    <Key>1a813c8c-d0ba-4bc0-88ce-9eb8f737cb92</Key>
    <Value>sample string 4</Value>
  </KeyValueOfguidstring>
</ArrayOfKeyValueOfguidstring>