POST api/orders/SetOrderDelivered

Request Information

URI Parameters

None.

Body Parameters

SetOrderDeliveredViewModel
NameDescriptionTypeAdditional information
OrderId

integer

Required

Image

string

None.

Review

decimal number

None.

CourierNotes

string

None.

SignedBy

string

None.

Request Formats

application/json, text/json

Sample:
{
  "OrderId": 1,
  "Image": "sample string 2",
  "Review": 3.0,
  "CourierNotes": "sample string 4",
  "SignedBy": "sample string 5"
}

application/xml, text/xml

Sample:
<SetOrderDeliveredViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DeliveryCore.ViewModels">
  <CourierNotes>sample string 4</CourierNotes>
  <Image>sample string 2</Image>
  <OrderId>1</OrderId>
  <Review>3</Review>
  <SignedBy>sample string 5</SignedBy>
</SetOrderDeliveredViewModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.