GET api/v2.0/Comments/Get?commentKey={commentKey}
Returns the details of the specified Comment.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
commentKey |
unique identifier of a specific Comment |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
The details of the specified Comment
CommentName | Description | Type | Additional information |
---|---|---|---|
CommentKey |
The unique identifier for the comment |
globally unique identifier |
None. |
CommentBody |
The text body of the comment |
string |
None. |
CommentAuthor |
Metadata pertaining to the user who created the comment |
ContactConcise |
None. |
IsOfficial |
A single comment for an item can be marked as the official comment, and is generally displayed as the top comment/pinned. |
boolean |
None. |
ItemKey |
The unique identifier for the comment's parent content item |
globally unique identifier |
None. |
CreatedOn |
The date that the comment was created |
date |
None. |
UpdatedOn |
The date that the comment was last updated |
date |
None. |
Response Formats
application/json, text/json
Sample:
{ "CommentKey": "ec95b530-fefe-478c-90aa-b2994e31e9e7", "CommentBody": "sample string 2", "CommentAuthor": { "LinkToProfile": "sample string 1", "PictureUrl": "sample string 2", "ContactKey": "c29c751c-f7e3-4776-ab95-8c226e2fd95c", "FirstName": "sample string 4", "LastName": "sample string 5", "DisplayName": "sample string 6", "EmailAddress": "sample string 7", "ContactStatusCode": "sample string 8", "PrefixCode": "sample string 9", "UpdatedOn": "2025-01-15T07:40:26.6065143Z", "UpdatedByContactKey": "84c88d6c-5ccb-42ca-8bd9-bf97d114ade5", "CompanyName": "sample string 12", "CompanyTitle": "sample string 13", "SuffixCode": "sample string 14", "Designation": "sample string 15", "LegacyContactKey": "sample string 16", "InformalName": "sample string 17", "MiddleName": "sample string 18", "IsCompany": true, "CompanyLegacyContactKey": "sample string 20", "AMSDirectoryOptOut": true, "HLDirectoryOptOut": true, "HLContactMeOptOut": true, "LargePictureUrl": "sample string 24", "AgreedToTermsDateTime": "2025-01-15T07:40:26.6065143Z" }, "IsOfficial": true, "ItemKey": "29f29dfa-4ad8-4f10-bc1a-bb1edec2c145", "CreatedOn": "2025-01-15T07:40:26.6065143Z", "UpdatedOn": "2025-01-15T07:40:26.6065143Z" }
application/xml, text/xml
Sample:
<Comment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HigherLogic.API.Models.Enterprise"> <CommentAuthor> <AMSDirectoryOptOut>true</AMSDirectoryOptOut> <AgreedToTermsDateTime>2025-01-15T02:40:26.6065143-05:00</AgreedToTermsDateTime> <CompanyLegacyContactKey>sample string 20</CompanyLegacyContactKey> <CompanyName>sample string 12</CompanyName> <CompanyTitle>sample string 13</CompanyTitle> <ContactKey>c29c751c-f7e3-4776-ab95-8c226e2fd95c</ContactKey> <ContactStatusCode>sample string 8</ContactStatusCode> <Designation>sample string 15</Designation> <DisplayName>sample string 6</DisplayName> <EmailAddress>sample string 7</EmailAddress> <FirstName>sample string 4</FirstName> <HLContactMeOptOut>true</HLContactMeOptOut> <HLDirectoryOptOut>true</HLDirectoryOptOut> <InformalName>sample string 17</InformalName> <IsCompany>true</IsCompany> <LargePictureUrl>sample string 24</LargePictureUrl> <LastName>sample string 5</LastName> <LegacyContactKey>sample string 16</LegacyContactKey> <LinkToProfile>sample string 1</LinkToProfile> <MiddleName>sample string 18</MiddleName> <PictureUrl>sample string 2</PictureUrl> <PrefixCode>sample string 9</PrefixCode> <SuffixCode>sample string 14</SuffixCode> <UpdatedByContactKey>84c88d6c-5ccb-42ca-8bd9-bf97d114ade5</UpdatedByContactKey> <UpdatedOn>2025-01-15T02:40:26.6065143-05:00</UpdatedOn> </CommentAuthor> <CommentBody>sample string 2</CommentBody> <CommentKey>ec95b530-fefe-478c-90aa-b2994e31e9e7</CommentKey> <CreatedOn>2025-01-15T02:40:26.6065143-05:00</CreatedOn> <IsOfficial>true</IsOfficial> <ItemKey>29f29dfa-4ad8-4f10-bc1a-bb1edec2c145</ItemKey> <UpdatedOn>2025-01-15T02:40:26.6065143-05:00</UpdatedOn> </Comment>