POST api/OnlineOrdering/CheckOrder

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
dto
No documentation available.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "UserEmail": "sample string 1",
  "Password": "sample string 2",
  "Order": {
    "$id": "2",
    "BranchID": 1,
    "CustomerID": 2,
    "CustomerAddressID": 1,
    "DeliveryNotes": "sample string 3",
    "OrderNotes": "sample string 4",
    "Products": [
      {
        "$id": "3",
        "ProductID": 1,
        "Quantity": 2,
        "Notes": "sample string 3",
        "Extras": [
          {
            "$id": "4",
            "ExtraID": 1,
            "Price": 2.0,
            "VatRate": 3.0
          },
          {
            "$ref": "4"
          },
          {
            "$ref": "4"
          }
        ],
        "Price": 4.0,
        "ExtrasPrice": 5.0,
        "VatRate": 6.0
      },
      {
        "$ref": "3"
      },
      {
        "$ref": "3"
      }
    ]
  }
}

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 'OnlineOrder'.