POST api/comments/InsertUserlike
Request Information
URI Parameters
None.
Body Parameters
InsertLikeComment| Name | Description | Type | Additional information |
|---|---|---|---|
| CommentID | globally unique identifier |
None. |
|
| Like | integer |
None. |
|
| UnLike | integer |
None. |
|
| UserId | integer |
None. |
|
| UploadId | integer |
None. |
|
| isLike | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"commentID": "30eec13f-76b5-4885-9192-f24700eadf75",
"like": 2,
"unLike": 3,
"userId": 4,
"uploadId": 5,
"isLike": true
}
application/xml, text/xml
Sample:
<InsertLikeComment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cultural.Common"> <CommentID>30eec13f-76b5-4885-9192-f24700eadf75</CommentID> <Like>2</Like> <UnLike>3</UnLike> <UploadId>5</UploadId> <UserId>4</UserId> <isLike>true</isLike> </InsertLikeComment>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
StarAPIResponseOfString| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | string |
None. |
|
| Result | string |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
Sample not available.