POST api/Vendor/walletCheckOut
Request Information
URI Parameters
None.
Body Parameters
OrdersListNew| Name | Description | Type | Additional information |
|---|---|---|---|
| Address | string |
None. |
|
| TotalAmount | decimal number |
None. |
|
| HomeDelivery | boolean |
None. |
|
| PickUp | boolean |
None. |
|
| SecurenPin | string |
None. |
|
| CartID | integer |
None. |
|
| Items | Collection of OrderItemRequest |
None. |
Request Formats
application/json, text/json
Sample:
{
"Address": "sample string 1",
"TotalAmount": 2.0,
"HomeDelivery": true,
"PickUp": true,
"SecurenPin": "sample string 5",
"CartID": 6,
"Items": [
{
"ProductID": 1,
"Price": 2.0,
"Quantity": 3,
"VendorID": 4
},
{
"ProductID": 1,
"Price": 2.0,
"Quantity": 3,
"VendorID": 4
}
]
}
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.