PUT api/Content/v3/RemoveCheckinComment
Request Information
URI Parameters
None.
Body Parameters
APICheckInComment| Name | Description | Type | Additional information |
|---|---|---|---|
| UserUniqueId | integer |
None. |
|
| CustomerId | integer |
None. |
|
| UniqueId | globally unique identifier |
None. |
|
| Comment | string |
None. |
|
| CheckinHistoryId | integer |
None. |
|
| CheckinCommentId | integer |
None. |
|
| ParentCommentId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserUniqueId": 1,
"CustomerId": 2,
"UniqueId": "bf1ad3ca-d94b-46dd-900d-7374ce01958b",
"Comment": "sample string 4",
"CheckinHistoryId": 5,
"CheckinCommentId": 6,
"ParentCommentId": 7
}
application/xml, text/xml
Sample:
<APICheckInComment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model"> <CheckinCommentId>6</CheckinCommentId> <CheckinHistoryId>5</CheckinHistoryId> <Comment>sample string 4</Comment> <CustomerId>2</CustomerId> <ParentCommentId>7</ParentCommentId> <UniqueId>bf1ad3ca-d94b-46dd-900d-7374ce01958b</UniqueId> <UserUniqueId>1</UserUniqueId> </APICheckInComment>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
APIResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | boolean |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": true,
"Message": "sample string 2"
}
application/xml, text/xml
Sample:
<APIResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model"> <Message>sample string 2</Message> <Status>true</Status> </APIResult>