POST api/order/confirmMonthlyOrder
Request Information
URI Parameters
None.
Body Parameters
clsOrderAndTransaction| Name | Description | Type | Additional information |
|---|---|---|---|
| RegistrationId | integer |
None. |
|
| ContactNo | string |
None. |
|
| Longitude | string |
None. |
|
| Latitude | string |
None. |
|
| Status | string |
None. |
|
| DeliveryAddress | string |
None. |
|
| CartNo | integer |
None. |
|
| RewardAmount | decimal number |
None. |
|
| DepositAmount | decimal number |
None. |
|
| WithdrawableAmount | decimal number |
None. |
|
| DeliveryDate | string |
None. |
|
| DeliveryTime | string |
None. |
|
| NoOfDays | integer |
None. |
|
| ProductName | string |
None. |
|
| Unit | string |
None. |
|
| UnitType | string |
None. |
|
| Quantity | integer |
None. |
|
| Rate | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{
"registrationId": 1,
"contactNo": "sample string 2",
"longitude": "sample string 3",
"latitude": "sample string 4",
"status": "sample string 5",
"deliveryAddress": "sample string 6",
"cartNo": 7,
"rewardAmount": 8.0,
"depositAmount": 9.0,
"withdrawableAmount": 10.0,
"deliveryDate": "sample string 11",
"deliveryTime": "sample string 12",
"noOfDays": 13,
"productName": "sample string 14",
"unit": "sample string 15",
"unitType": "sample string 16",
"quantity": 17,
"rate": 18.0
}
application/xml, text/xml
Sample:
<clsOrderAndTransaction xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AnnajiApi.Controllers"> <CartNo>7</CartNo> <ContactNo>sample string 2</ContactNo> <DeliveryAddress>sample string 6</DeliveryAddress> <DeliveryDate>sample string 11</DeliveryDate> <DeliveryTime>sample string 12</DeliveryTime> <DepositAmount>9</DepositAmount> <Latitude>sample string 4</Latitude> <Longitude>sample string 3</Longitude> <NoOfDays>13</NoOfDays> <ProductName>sample string 14</ProductName> <Quantity>17</Quantity> <Rate>18</Rate> <RegistrationId>1</RegistrationId> <RewardAmount>8</RewardAmount> <Status>sample string 5</Status> <Unit>sample string 15</Unit> <UnitType>sample string 16</UnitType> <WithdrawableAmount>10</WithdrawableAmount> </clsOrderAndTransaction>
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. |