POST v2/api/OrderAcknowledgement

Processes Order Acknowledgement details from Nike to eShopWorld.

Request Information

URI Parameters

None.

Body Parameters

A object containing Order Acknowledgement details for eShopWorld to process.

esw.Common.Model.Published.Order.Nike.v2.NikeOrderAcknowledgementRequest
NameDescriptionTypeAdditional information
BrandOrderReference

The Nike Order number that is being acknowledged. Required: Yes

string

None.

Request Formats

application/json, text/json

Sample:
{
  "BrandOrderReference": "sample string 1"
}

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'System.Web.Http.ModelBinding.JQueryMvcFormUrlEncodedFormatter' to write type 'esw.Common.Model.Published.Order.Nike.v2.NikeOrderAcknowledgementRequest'.

application/xml, text/xml

Sample:
<Order xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" OrderNo="sample string 1" xmlns="http://www.eShopWorld.com/eShopWorld.Nike.Contracts" />

Response Information

Resource Description

An object containing the response object.

esw.Common.Model.Published.Order.Nike.v2.NikeOrderAcknowledgementResponse
NameDescriptionTypeAdditional information
Status

esw.Common.Model.Published.Order.Nike.NikeOrderAcknowledgementStatus

None.

StatusMessage

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": 0,
  "StatusMessage": "sample string 1"
}

application/xml, text/xml

Sample:
<Order xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.eShopWorld.com/eShopWorld.Nike.Contracts">
  <Status>Success</Status>
  <StatusMessage>sample string 1</StatusMessage>
</Order>