POST api/MFoodz/CustRatingMFoodzOrder

Request Information

URI Parameters

None.

Body Parameters

CustRatingMFoodzOrderParams
NameDescriptionTypeAdditional information
OrderId

integer

None.

ShopId

integer

None.

ShopRating

integer

None.

Review

string

None.

DriverId

integer

None.

DriverRating

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "OrderId": 1,
  "ShopId": 2,
  "ShopRating": 3,
  "Review": "sample string 4",
  "DriverId": 5,
  "DriverRating": 6
}

application/xml, text/xml

Sample:
<CustRatingMFoodzOrderParams xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MRide_API">
  <DriverId>5</DriverId>
  <DriverRating>6</DriverRating>
  <OrderId>1</OrderId>
  <Review>sample string 4</Review>
  <ShopId>2</ShopId>
  <ShopRating>3</ShopRating>
</CustRatingMFoodzOrderParams>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IAsyncResult
NameDescriptionTypeAdditional information
IsCompleted

boolean

None.

AsyncWaitHandle

WaitHandle

None.

AsyncState

Object

None.

CompletedSynchronously

boolean

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.