POST api/Account/GetKeys

Get All Api-Keys connected to the company of this user, and those connected to the IP Address

Request Information

URI Parameters

None.

Body Parameters

DataCollection(Username,Password)

Collection of Object

None.

Request Formats

application/json, text/json, application/xml, text/xml, application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

KeyResponse Object

KeyResponse
NameDescriptionTypeAdditional information
keys

List of companies with API-Keys

Collection of mWebAPIKey

None.

ex

exception list

Collection of oErr

None.

Response Formats

application/json, text/json

Sample:
{
  "keys": [
    {
      "k": "f9596c7b-a9b3-418e-8a3b-f1f9d314c4e9",
      "v": true,
      "Number": 3,
      "Name1": "sample string 4",
      "Name2": "sample string 5",
      "Adress": "sample string 6",
      "ZipAndCity": "sample string 7"
    },
    {
      "k": "f9596c7b-a9b3-418e-8a3b-f1f9d314c4e9",
      "v": true,
      "Number": 3,
      "Name1": "sample string 4",
      "Name2": "sample string 5",
      "Adress": "sample string 6",
      "ZipAndCity": "sample string 7"
    }
  ],
  "ex": [
    {
      "n": 1,
      "t": "sample string 2"
    },
    {
      "n": 1,
      "t": "sample string 2"
    }
  ]
}

application/xml, text/xml

Sample:
<KeyResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ista.web.api.models">
  <_ex>
    <oErr>
      <errNmbr>1</errNmbr>
      <errText>sample string 2</errText>
    </oErr>
    <oErr>
      <errNmbr>1</errNmbr>
      <errText>sample string 2</errText>
    </oErr>
  </_ex>
  <keys>
    <mWebAPIKey>
      <Adress>sample string 6</Adress>
      <Name1>sample string 4</Name1>
      <Name2>sample string 5</Name2>
      <Number>3</Number>
      <ZipAndCity>sample string 7</ZipAndCity>
      <Valid4U>true</Valid4U>
      <gkey>f9596c7b-a9b3-418e-8a3b-f1f9d314c4e9</gkey>
    </mWebAPIKey>
    <mWebAPIKey>
      <Adress>sample string 6</Adress>
      <Name1>sample string 4</Name1>
      <Name2>sample string 5</Name2>
      <Number>3</Number>
      <ZipAndCity>sample string 7</ZipAndCity>
      <Valid4U>true</Valid4U>
      <gkey>f9596c7b-a9b3-418e-8a3b-f1f9d314c4e9</gkey>
    </mWebAPIKey>
  </keys>
</KeyResponse>