POST api/Auth/GetDropdownData

Request Information

URI Parameters

None.

Body Parameters

DropdownDataRequest
NameDescriptionTypeAdditional information
Type

string

None.

ContextKey1

string

None.

ContextKey2

string

None.

ContextKey3

string

None.

ApiSecretKey

string

None.

ECode

string

None.

AuthLoginToken

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Type": "sample string 1",
  "ContextKey1": "sample string 2",
  "ContextKey2": "sample string 3",
  "ContextKey3": "sample string 4",
  "ApiSecretKey": "sample string 5",
  "ECode": "sample string 6",
  "AuthLoginToken": "sample string 7"
}

application/xml, text/xml

Sample:
<Auth.DropdownDataRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ExpressIts_API.Models">
  <ApiSecretKey>sample string 5</ApiSecretKey>
  <AuthLoginToken>sample string 7</AuthLoginToken>
  <ECode>sample string 6</ECode>
  <ContextKey1>sample string 2</ContextKey1>
  <ContextKey2>sample string 3</ContextKey2>
  <ContextKey3>sample string 4</ContextKey3>
  <Type>sample string 1</Type>
</Auth.DropdownDataRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

DropdownDataResponse
NameDescriptionTypeAdditional information
DataList

Collection of ListData

None.

Status

string

None.

Message

string

None.

Focus

string

None.

Response Formats

application/json, text/json

Sample:
{
  "DataList": [
    {
      "Value": "sample string 1",
      "Name": "sample string 2"
    },
    {
      "Value": "sample string 1",
      "Name": "sample string 2"
    }
  ],
  "Status": "sample string 1",
  "Message": "sample string 2",
  "Focus": "sample string 3"
}

application/xml, text/xml

Sample:
<Auth.DropdownDataResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ExpressIts_API.Models">
  <Focus>sample string 3</Focus>
  <Message>sample string 2</Message>
  <Status>sample string 1</Status>
  <DataList>
    <Auth.DropdownDataResponse.ListData>
      <Name>sample string 2</Name>
      <Value>sample string 1</Value>
    </Auth.DropdownDataResponse.ListData>
    <Auth.DropdownDataResponse.ListData>
      <Name>sample string 2</Name>
      <Value>sample string 1</Value>
    </Auth.DropdownDataResponse.ListData>
  </DataList>
</Auth.DropdownDataResponse>