PUT api/Content/v2/AddComment
Request Information
URI Parameters
None.
Body Parameters
APICommentName | Description | Type | Additional information |
---|---|---|---|
EntityType | integer |
None. |
|
EntityId | integer |
None. |
|
CustomerId | integer |
None. |
|
UniqueId | globally unique identifier |
None. |
|
Comment | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "EntityType": 1, "EntityId": 2, "CustomerId": 3, "UniqueId": "ddf26d51-dc9f-42e9-91ae-580b7ed8c88c", "Comment": "sample string 5" }
application/xml, text/xml
Sample:
<APIComment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model"> <Comment>sample string 5</Comment> <CustomerId>3</CustomerId> <EntityId>2</EntityId> <EntityType>1</EntityType> <UniqueId>ddf26d51-dc9f-42e9-91ae-580b7ed8c88c</UniqueId> </APIComment>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>