POST CancelOrderByUser/{orderId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
orderId

integer

Required

Body Parameters

None.

Response Information

Resource Description

OrderResponse
NameDescriptionTypeAdditional information
Status

integer

None.

Message

string

None.

OrderId

integer

None.

CustomerId

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": 1,
  "Message": "sample string 2",
  "OrderId": 3,
  "CustomerId": 4
}

application/xml, text/xml

Sample:
<OrderResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NailItWeb.DAL">
  <CustomerId>4</CustomerId>
  <Message>sample string 2</Message>
  <OrderId>3</OrderId>
  <Status>1</Status>
</OrderResponse>