POST api/Service/ClosePurchaseOrder

Request Information

URI Parameters

None.

Body Parameters

ClosePurchaseOrderRequest
NameDescriptionTypeAdditional information
Input

ClosePurchaseOrderInputModel

None.

Request Formats

application/json, text/json

Sample:
{
  "Input": {
    "PurchaseOrderNo": 1,
    "UserNo": 2
  }
}

application/xml, text/xml

Sample:
<ClosePurchaseOrderRequest 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>
</ClosePurchaseOrderRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ClosePurchaseOrderResponse
NameDescriptionTypeAdditional information
OutPut

ClosePurchaseOrderOutPutModel

None.

Response Formats

application/json, text/json

Sample:
{
  "OutPut": {
    "Success": true,
    "Message": "sample string 2"
  }
}

application/xml, text/xml

Sample:
<ClosePurchaseOrderResponse 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>
</ClosePurchaseOrderResponse>