POST Book/SubmitBookRating
Request Information
URI Parameters
None.
Body Parameters
ARBRating| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | integer |
None. |
|
| BookRevisionID | integer |
None. |
|
| RatingOn | date |
None. |
|
| Rating | decimal number |
None. |
|
| Comments | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserId": 1,
"BookRevisionID": 2,
"RatingOn": "2026-01-17T22:30:25.2852105+05:30",
"Rating": 4.0,
"Comments": "sample string 5"
}
application/xml, text/xml
Sample:
<ARBRating xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MMW.TalkingPages.WebApi"> <BookRevisionID>2</BookRevisionID> <Comments>sample string 5</Comments> <Rating>4</Rating> <RatingOn>2026-01-17T22:30:25.2852105+05:30</RatingOn> <UserId>1</UserId> </ARBRating>
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. |