GET api/SalesOrder/{id}/deliver?processDate={processDate}

Deliver a Salesorder

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

Sales Order Number

string

Required

processDate

Date the order should be processed at

date

None.

Body Parameters

None.

Response Information

Resource Description

result (also returns true if a salesorder was already delivered)

EntityResponseWrapper
NameDescriptionTypeAdditional information
Result

boolean

None.

Response

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Result": true,
  "Response": "sample string 2"
}

application/xml, text/xml

Sample:
<EntityResponseWrapper xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <Result>true</Result>
  <Response>sample string 2</Response>
</EntityResponseWrapper>