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