Request Information

URI Parameters

System.Collections.ObjectModel.Collection`1[Connections.API.Areas.HelpPage.ModelDescriptions.ParameterDescription] IList
id globally unique identifier Required

Guid ID of the comment to be updated.

tz string

Optional parameter to set time zone information.

Body Parameters (Comment)

This object takes all the parameters needed to update a comment.

System.Collections.ObjectModel.Collection`1[Connections.API.Areas.HelpPage.ModelDescriptions.ParameterDescription] IList
ID globally unique identifier Required on Update

ID of the given comment.

AncestorID globally unique identifier Required on Create

Ancestor of the given comment.

Post string Required

Contents of the given comment.

UserID globally unique identifier ReadOnly

ID of the user that posted the given comment.

PostDate date ReadOnly

Date the given comment was created.

SiteID globally unique identifier ReadOnly

ID of the site for the given comment.

IndividualFullName string ReadOnly

Full name of the individual that created the given comment.

IndividualID globally unique identifier ReadOnly

ID of the individual that created the given comment.

UserName string ReadOnly

User name of the individual that created the given comment.

Request Formats

application/xml, text/xml

Sample
<Comment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://col4.com/api/v4">
  <ID>0e9d50ed-1f9c-4348-a8c9-d5ea9a3c30ba</ID>
  <AncestorID>d27960d4-a097-4e41-b052-09313f45ee29</AncestorID>
  <Post>sample string 1</Post>
</Comment>

application/json, text/json

Sample
{
  "ID": "0e9d50ed-1f9c-4348-a8c9-d5ea9a3c30ba",
  "AncestorID": "d27960d4-a097-4e41-b052-09313f45ee29",
  "Post": "sample string 1"
}

Response Information

Resource Description (Comment)

System.Collections.ObjectModel.Collection`1[Connections.API.Areas.HelpPage.ModelDescriptions.ParameterDescription] IList
ID globally unique identifier Required on Update

ID of the given comment.

AncestorID globally unique identifier Required on Create

Ancestor of the given comment.

Post string Required

Contents of the given comment.

UserID globally unique identifier ReadOnly

ID of the user that posted the given comment.

PostDate date ReadOnly

Date the given comment was created.

SiteID globally unique identifier ReadOnly

ID of the site for the given comment.

IndividualFullName string ReadOnly

Full name of the individual that created the given comment.

IndividualID globally unique identifier ReadOnly

ID of the individual that created the given comment.

UserName string ReadOnly

User name of the individual that created the given comment.

Response Formats

application/xml, text/xml

Sample
<Comment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://col4.com/api/v4">
  <ID>2da39064-492b-4e37-a337-ac6e5573b1e4</ID>
  <AncestorID>bb64a4a1-955a-4d66-9c4b-5294608fa01e</AncestorID>
  <UserID>3a0fe7a6-6387-4b22-8c0e-9a35377b4c24</UserID>
  <Post>sample string 1</Post>
  <PostDate xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
    <d2p1:DateTime>2024-03-01T17:55:44.4978433Z</d2p1:DateTime>
    <d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
  </PostDate>
  <SiteID>81c195d6-d71d-4bfa-a1f5-e02559f3058c</SiteID>
  <IndividualFullName>sample string 2</IndividualFullName>
  <IndividualID>6a1714cf-61df-4ea6-91e7-ceea204485fd</IndividualID>
  <UserName>sample string 3</UserName>
</Comment>

application/json, text/json

Sample
{
  "ID": "2da39064-492b-4e37-a337-ac6e5573b1e4",
  "AncestorID": "bb64a4a1-955a-4d66-9c4b-5294608fa01e",
  "UserID": "3a0fe7a6-6387-4b22-8c0e-9a35377b4c24",
  "Post": "sample string 1",
  "PostDate": "2024-03-01T17:55:44.4978433+00:00",
  "SiteID": "81c195d6-d71d-4bfa-a1f5-e02559f3058c",
  "IndividualFullName": "sample string 2",
  "IndividualID": "6a1714cf-61df-4ea6-91e7-ceea204485fd",
  "UserName": "sample string 3"
}