<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://ivs.help/wiki/index.php?action=history&amp;feed=atom&amp;title=API_View_Comment</id>
		<title>API View Comment - Revision history</title>
		<link rel="self" type="application/atom+xml" href="https://ivs.help/wiki/index.php?action=history&amp;feed=atom&amp;title=API_View_Comment"/>
		<link rel="alternate" type="text/html" href="https://ivs.help/wiki/index.php?title=API_View_Comment&amp;action=history"/>
		<updated>2026-06-17T18:52:44Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>https://ivs.help/wiki/index.php?title=API_View_Comment&amp;diff=17602&amp;oldid=prev</id>
		<title>IVSWikiBlue: Created page with &quot;This API call retrieves a specific comment by its ID.  ===Resource URL=== &lt;pre&gt;http://valt.example.com/api/v3/comment/{id}&lt;/pre&gt; ''Replace {id} with the actual ID number of th...&quot;</title>
		<link rel="alternate" type="text/html" href="https://ivs.help/wiki/index.php?title=API_View_Comment&amp;diff=17602&amp;oldid=prev"/>
				<updated>2026-06-11T20:37:18Z</updated>
		
		<summary type="html">&lt;p&gt;Created page with &amp;quot;This API call retrieves a specific comment by its ID.  ===Resource URL=== &amp;lt;pre&amp;gt;http://valt.example.com/api/v3/comment/{id}&amp;lt;/pre&amp;gt; &amp;#039;&amp;#039;Replace {id} with the actual ID number of th...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;This API call retrieves a specific comment by its ID.&lt;br /&gt;
&lt;br /&gt;
===Resource URL===&lt;br /&gt;
&amp;lt;pre&amp;gt;http://valt.example.com/api/v3/comment/{id}&amp;lt;/pre&amp;gt;&lt;br /&gt;
''Replace {id} with the actual ID number of the comment.''&lt;br /&gt;
&lt;br /&gt;
===Resource Information===&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|'''Method'''&lt;br /&gt;
|GET&lt;br /&gt;
|-&lt;br /&gt;
|'''Headers'''&lt;br /&gt;
|Content-Type: application/json&lt;br /&gt;
|-&lt;br /&gt;
|'''Response Type'''&lt;br /&gt;
|JSON&lt;br /&gt;
|-&lt;br /&gt;
|'''Authentication Required'''&lt;br /&gt;
|Yes&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Parameters===&lt;br /&gt;
====Path Parameters====&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Parameter&lt;br /&gt;
!Description&lt;br /&gt;
!Example&lt;br /&gt;
|-&lt;br /&gt;
|'''id'''&lt;br /&gt;
|The ID of the comment to retrieve.&lt;br /&gt;
|42&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Response===&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Code&lt;br /&gt;
!Reason&lt;br /&gt;
|-&lt;br /&gt;
|200&lt;br /&gt;
|Success&lt;br /&gt;
|-&lt;br /&gt;
|400&lt;br /&gt;
|Invalid Request (See Response for Specific Error)&lt;br /&gt;
|-&lt;br /&gt;
|401&lt;br /&gt;
|Unauthorized&lt;br /&gt;
|-&lt;br /&gt;
|500&lt;br /&gt;
|Internal Server Error&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
A successful response returns the full Comment object:&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+Comment Object Fields&lt;br /&gt;
!Field&lt;br /&gt;
!Type&lt;br /&gt;
!Description&lt;br /&gt;
|-&lt;br /&gt;
|'''id'''&lt;br /&gt;
|int&lt;br /&gt;
|Unique identifier of the comment.&lt;br /&gt;
|-&lt;br /&gt;
|'''parentId'''&lt;br /&gt;
|int or null&lt;br /&gt;
|The ID of the parent comment, if applicable. Null if it has no parent.&lt;br /&gt;
|-&lt;br /&gt;
|'''message'''&lt;br /&gt;
|string or null&lt;br /&gt;
|The text content of the comment.&lt;br /&gt;
|-&lt;br /&gt;
|'''recordId'''&lt;br /&gt;
|string&lt;br /&gt;
|Unique identifier for the associated record.&lt;br /&gt;
|-&lt;br /&gt;
|'''recordTime'''&lt;br /&gt;
|string&lt;br /&gt;
|Seconds from the beginning of the associated record.&lt;br /&gt;
|-&lt;br /&gt;
|'''createdAt'''&lt;br /&gt;
|int&lt;br /&gt;
|Unix timestamp when the comment was created.&lt;br /&gt;
|-&lt;br /&gt;
|'''updatedAt'''&lt;br /&gt;
|int&lt;br /&gt;
|Unix timestamp when the comment was last updated.&lt;br /&gt;
|-&lt;br /&gt;
|'''author'''&lt;br /&gt;
|User object&lt;br /&gt;
|The author of the comment. Contains &amp;lt;code&amp;gt;id&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;username&amp;lt;/code&amp;gt;, and &amp;lt;code&amp;gt;displayName&amp;lt;/code&amp;gt;.&lt;br /&gt;
|-&lt;br /&gt;
|'''updatedBy'''&lt;br /&gt;
|User object or null&lt;br /&gt;
|The user who last updated the comment. Null if never updated.&lt;br /&gt;
|-&lt;br /&gt;
|'''audioId'''&lt;br /&gt;
|string or null&lt;br /&gt;
|Unique identifier for the associated audio, if applicable.&lt;br /&gt;
|-&lt;br /&gt;
|'''template'''&lt;br /&gt;
|Template object or null&lt;br /&gt;
|Template attachment, if applicable.&lt;br /&gt;
|-&lt;br /&gt;
|'''files'''&lt;br /&gt;
|array&lt;br /&gt;
|List of file attachments. Empty array if no files are attached. Each file contains &amp;lt;code&amp;gt;id&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;name&amp;lt;/code&amp;gt;, and &amp;lt;code&amp;gt;size&amp;lt;/code&amp;gt; (bytes).&lt;br /&gt;
|-&lt;br /&gt;
|'''color'''&lt;br /&gt;
|string&lt;br /&gt;
|Color name associated with the comment.&lt;br /&gt;
|-&lt;br /&gt;
|'''replies'''&lt;br /&gt;
|array&lt;br /&gt;
|Array of reply comments.&lt;br /&gt;
|-&lt;br /&gt;
|'''taggedUsers'''&lt;br /&gt;
|array&lt;br /&gt;
|Array of users tagged in the comment.&lt;br /&gt;
|-&lt;br /&gt;
|'''taggedUserGroups'''&lt;br /&gt;
|array&lt;br /&gt;
|Array of user groups tagged in the comment.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
===Request===&lt;br /&gt;
&amp;lt;pre&amp;gt;https://ivstest1.ad.ipivs.com/api/v3/comment/42?access_token=e82632d19c523678fea3d1016c6df9e9&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Successful Response===&lt;br /&gt;
Sample response is shown with line breaks to make it more readable. Actual responses will not include line breaks.&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
  &amp;quot;id&amp;quot;: 42,&lt;br /&gt;
  &amp;quot;parentId&amp;quot;: null,&lt;br /&gt;
  &amp;quot;message&amp;quot;: &amp;quot;comment 2&amp;quot;,&lt;br /&gt;
  &amp;quot;recordId&amp;quot;: &amp;quot;7b931a86-2142-4121-a6f8-2e3197d4c5bf&amp;quot;,&lt;br /&gt;
  &amp;quot;recordTime&amp;quot;: 2,&lt;br /&gt;
  &amp;quot;audioId&amp;quot;: null,&lt;br /&gt;
  &amp;quot;template&amp;quot;: null,&lt;br /&gt;
  &amp;quot;author&amp;quot;: {&lt;br /&gt;
    &amp;quot;id&amp;quot;: 2,&lt;br /&gt;
    &amp;quot;displayName&amp;quot;: &amp;quot;user without rights&amp;quot;,&lt;br /&gt;
    &amp;quot;username&amp;quot;: &amp;quot;no rights user&amp;quot;&lt;br /&gt;
  },&lt;br /&gt;
  &amp;quot;files&amp;quot;: [],&lt;br /&gt;
  &amp;quot;updatedBy&amp;quot;: null,&lt;br /&gt;
  &amp;quot;color&amp;quot;: &amp;quot;red&amp;quot;,&lt;br /&gt;
  &amp;quot;replies&amp;quot;: [],&lt;br /&gt;
  &amp;quot;taggedUsers&amp;quot;: [],&lt;br /&gt;
  &amp;quot;taggedUserGroups&amp;quot;: [],&lt;br /&gt;
  &amp;quot;createdAt&amp;quot;: 1737109634,&lt;br /&gt;
  &amp;quot;updatedAt&amp;quot;: 1737111434&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Failure Response===&lt;br /&gt;
Sample response is shown with line breaks to make it more readable. Actual responses will not include line breaks.&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
  &amp;quot;error&amp;quot;: {&lt;br /&gt;
    &amp;quot;code&amp;quot;: 500,&lt;br /&gt;
    &amp;quot;message&amp;quot;: &amp;quot;Internal Server Error&amp;quot;&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;/div&gt;</summary>
		<author><name>IVSWikiBlue</name></author>	</entry>

	</feed>