POST api/order/updateOrderStatus
Request Information
URI Parameters
None.
Body Parameters
clsOrderDAL| Name | Description | Type | Additional information |
|---|---|---|---|
| OrderId | string |
None. |
|
| OrderNo | string |
None. |
|
| ProductName | string |
None. |
|
| Unit | string |
None. |
|
| UnitType | string |
None. |
|
| Rate | decimal number |
None. |
|
| RegistrationId | integer |
None. |
|
| ContactNo | string |
None. |
|
| Date | date |
None. |
|
| Time | string |
None. |
|
| Longitude | string |
None. |
|
| Latitude | string |
None. |
|
| Status | string |
None. |
|
| DeliveryAddress | string |
None. |
|
| CartNo | integer |
None. |
|
| Quantity | integer |
None. |
|
| FromDate | date |
None. |
|
| ToDate | date |
None. |
|
| MonthlyPackage | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"orderId": "sample string 1",
"orderNo": "sample string 2",
"productName": "sample string 3",
"unit": "sample string 4",
"unitType": "sample string 5",
"rate": 6.0,
"registrationId": 7,
"contactNo": "sample string 8",
"date": "2025-12-08T09:31:43.711427+05:30",
"time": "sample string 10",
"longitude": "sample string 11",
"latitude": "sample string 12",
"status": "sample string 13",
"deliveryAddress": "sample string 14",
"cartNo": 15,
"quantity": 16,
"fromDate": "2025-12-08T09:31:43.711427+05:30",
"toDate": "2025-12-08T09:31:43.711427+05:30",
"monthlyPackage": "sample string 19"
}
application/xml, text/xml
Sample:
<clsOrderDAL xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataAccessLayer"> <CartNo>15</CartNo> <ContactNo>sample string 8</ContactNo> <Date>2025-12-08T09:31:43.711427+05:30</Date> <DeliveryAddress>sample string 14</DeliveryAddress> <FromDate>2025-12-08T09:31:43.711427+05:30</FromDate> <Latitude>sample string 12</Latitude> <Longitude>sample string 11</Longitude> <MonthlyPackage>sample string 19</MonthlyPackage> <OrderId>sample string 1</OrderId> <OrderNo>sample string 2</OrderNo> <ProductName>sample string 3</ProductName> <Quantity>16</Quantity> <Rate>6</Rate> <RegistrationId>7</RegistrationId> <Status>sample string 13</Status> <Time>sample string 10</Time> <ToDate>2025-12-08T09:31:43.711427+05:30</ToDate> <Unit>sample string 4</Unit> <UnitType>sample string 5</UnitType> </clsOrderDAL>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |