POST dropdown/GetItemSerialNumberDDL
Request Information
URI Parameters
None.
Body Parameters
iGetItemSerialNumberDDLName | Description | Type | Additional information |
---|---|---|---|
companyID | globally unique identifier |
None. |
|
itemID | globally unique identifier |
None. |
|
type | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "companyID": "914ca7f0-4c34-4131-8b51-858bb7ced3b8", "itemID": "0e55a4c8-6885-464e-8a03-7743392ade29", "type": "sample string 3" }
application/xml, text/xml
Sample:
<iGetItemSerialNumberDDL xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WNTY_DAT.Model"> <companyID>914ca7f0-4c34-4131-8b51-858bb7ced3b8</companyID> <itemID>0e55a4c8-6885-464e-8a03-7743392ade29</itemID> <type>sample string 3</type> </iGetItemSerialNumberDDL>
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>