POST api/GetDropDownValues
Request Information
URI Parameters
None.
Body Parameters
GetDropDownRequestModel| Name | Description | Type | Additional information |
|---|---|---|---|
| API_Key | string |
None. |
|
| Token | string |
None. |
|
| Type | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"API_Key": "sample string 1",
"Token": "sample string 2",
"Type": "sample string 3"
}
application/xml, text/xml
Sample:
<GetDropDownRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API_Solution.Models"> <API_Key>sample string 1</API_Key> <Token>sample string 2</Token> <Type>sample string 3</Type> </GetDropDownRequestModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
StaticValueResponseModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Response | string |
None. |
|
| Code | integer |
None. |
|
| Message | string |
None. |
|
| Data | Collection of DropDownModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"Response": "sample string 1",
"Code": 2,
"Message": "sample string 3",
"Data": [
{
"Id": 1,
"Code": "sample string 2",
"Name": "sample string 3",
"Selected": "sample string 4"
},
{
"Id": 1,
"Code": "sample string 2",
"Name": "sample string 3",
"Selected": "sample string 4"
}
]
}
application/xml, text/xml
Sample:
<StaticValueResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LeadsManager.Model">
<Code>2</Code>
<Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/UtilityManager.Model">
<d2p1:DropDownModel>
<d2p1:Code>sample string 2</d2p1:Code>
<d2p1:Id>1</d2p1:Id>
<d2p1:Name>sample string 3</d2p1:Name>
<d2p1:Selected>sample string 4</d2p1:Selected>
</d2p1:DropDownModel>
<d2p1:DropDownModel>
<d2p1:Code>sample string 2</d2p1:Code>
<d2p1:Id>1</d2p1:Id>
<d2p1:Name>sample string 3</d2p1:Name>
<d2p1:Selected>sample string 4</d2p1:Selected>
</d2p1:DropDownModel>
</Data>
<Message>sample string 3</Message>
<Response>sample string 1</Response>
</StaticValueResponseModel>