POST api/ClientOperation/Add_Client_Review
Request Information
URI Parameters
None.
Body Parameters
ProductReviewEnt| Name | Description | Type | Additional information |
|---|---|---|---|
| ClientId | integer |
None. |
|
| ProductId | integer |
None. |
|
| ProductRating | decimal number |
None. |
|
| ProductComments | string |
None. |
|
| ClientName | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ClientId": 1,
"ProductId": 2,
"ProductRating": 3.0,
"ProductComments": "sample string 4",
"ClientName": "sample string 5"
}
application/xml, text/xml
Sample:
<ProductReviewEnt xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Common.RiceEnt"> <ClientId>1</ClientId> <ClientName>sample string 5</ClientName> <ProductComments>sample string 4</ProductComments> <ProductId>2</ProductId> <ProductRating>3</ProductRating> </ProductReviewEnt>
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. |