POST api/Order/Delivery/DeliverOrder

Request Information

URI Parameters

None.

Body Parameters

DeliverOrderRequest
NameDescriptionTypeAdditional information
OrderId

integer

None.

ReceivedPersonName

string

None.

ReceivedPersonContact

string

None.

ReceivedPersonSignature

string

None.

DeliveryRemarks

string

None.

Request Formats

application/json, text/json

Sample:
{
  "orderId": 1,
  "receivedPersonName": "sample string 2",
  "receivedPersonContact": "sample string 3",
  "receivedPersonSignature": "sample string 4",
  "deliveryRemarks": "sample string 5"
}

application/xml, text/xml

Sample:
<DeliverOrderRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/XeniaEStoreAPI.Resource">
  <DeliveryRemarks>sample string 5</DeliveryRemarks>
  <OrderId>1</OrderId>
  <ReceivedPersonContact>sample string 3</ReceivedPersonContact>
  <ReceivedPersonName>sample string 2</ReceivedPersonName>
  <ReceivedPersonSignature>sample string 4</ReceivedPersonSignature>
</DeliverOrderRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

APIResponse
NameDescriptionTypeAdditional information
Status

string

None.

Data

Object

None.

Message

string

None.

Type

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "status": "sample string 1",
  "data": {},
  "message": "sample string 3",
  "type": 4
}

application/xml, text/xml

Sample:
<APIResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/XeniaEStoreAPI.Controllers.Resource">
  <Data />
  <Message>sample string 3</Message>
  <Status>sample string 1</Status>
  <Type>4</Type>
</APIResponse>