PUT api/Content/v3/AddComment

Request Information

URI Parameters

None.

Body Parameters

APIComment
NameDescriptionTypeAdditional 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": "04905273-6211-49ee-97b9-825b03e92e18",
  "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>04905273-6211-49ee-97b9-825b03e92e18</UniqueId>
</APIComment>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>