POST api/Vendor/walletCheckOut

Request Information

URI Parameters

None.

Body Parameters

OrdersListNew
NameDescriptionTypeAdditional 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:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'OrdersListNew'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json

Sample:

Sample not available.