POST api/Service/ConfirmOrder
Request Information
URI Parameters
None.
Body Parameters
ConfirmOrderRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Input | ConfirmOrderInputModel |
None. |
Request Formats
application/json, text/json
Sample:
{
"Input": {
"SalesOrderNo": 1,
"UserNo": 2
}
}
application/xml, text/xml
Sample:
<ConfirmOrderRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BizMate.BizLayer">
<Input>
<SalesOrderNo>1</SalesOrderNo>
<UserNo>2</UserNo>
</Input>
</ConfirmOrderRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ConfirmOrderResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| OutPut | ConfirmOrderOutPutModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"OutPut": {
"Success": true,
"Message": "sample string 2"
}
}
application/xml, text/xml
Sample:
<ConfirmOrderResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BizMate.BizLayer">
<OutPut>
<Message>sample string 2</Message>
<Success>true</Success>
</OutPut>
</ConfirmOrderResponse>