POST dropdown/GetOptionSettingDDL
Request Information
URI Parameters
None.
Body Parameters
iGetOptionSettingDDLName | Description | Type | Additional information |
---|---|---|---|
optionType | string |
None. |
|
date | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "optionType": "sample string 1", "date": "sample string 2" }
application/xml, text/xml
Sample:
<iGetOptionSettingDDL xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WNTY_DAT.Model"> <date>sample string 2</date> <optionType>sample string 1</optionType> </iGetOptionSettingDDL>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
oDDLResponseName | Description | Type | Additional information |
---|---|---|---|
Records | Collection of oDDL |
None. |
|
StatusCode | boolean |
None. |
|
Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "Records": [ { "code": "sample string 1", "desc": "sample string 2", "category": "sample string 3" }, { "code": "sample string 1", "desc": "sample string 2", "category": "sample string 3" } ], "StatusCode": true, "Message": "sample string 2" }
application/xml, text/xml
Sample:
<oDDL.oDDLResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WNTY_DAT.Model"> <Message>sample string 2</Message> <Records> <oDDL> <category>sample string 3</category> <code>sample string 1</code> <desc>sample string 2</desc> </oDDL> <oDDL> <category>sample string 3</category> <code>sample string 1</code> <desc>sample string 2</desc> </oDDL> </Records> <StatusCode>true</StatusCode> </oDDL.oDDLResponse>