GET api/OrderStatusUpdate?OrderId={OrderId}&Status={Status}

Here you can change the status of an order. As "Value" either the specified Value-number, or also the string is possible. Example: you can pass "Picked", or "20". (case-sensitive is ignored) For a detailed overview see the link to the data type "OrderStatus".

Request Information

URI Parameters

NameDescriptionTypeAdditional information
OrderId

string

Required

Status

OrderStatus

Required

Body Parameters

None.

Response Information

Resource Description

StatusResponse
NameDescriptionTypeAdditional information
Status

Status

None.

ErrorMessage

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": "SUCCESS",
  "ErrorMessage": "sample string 1"
}

application/xml, text/xml

Sample:
<StatusResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Bandel.Dropshipping.API.Models">
  <ErrorMessage>sample string 1</ErrorMessage>
  <Status>SUCCESS</Status>
</StatusResponse>