blob: accba8d1da97d83606000860a4fc79982a250155 [file] [log] [blame]
John Asmuth614db982014-04-24 15:46:26 -04001<html><body>
2<style>
3
4body, h1, h2, h3, div, span, p, pre, a {
5 margin: 0;
6 padding: 0;
7 border: 0;
8 font-weight: inherit;
9 font-style: inherit;
10 font-size: 100%;
11 font-family: inherit;
12 vertical-align: baseline;
13}
14
15body {
16 font-size: 13px;
17 padding: 1em;
18}
19
20h1 {
21 font-size: 26px;
22 margin-bottom: 1em;
23}
24
25h2 {
26 font-size: 24px;
27 margin-bottom: 1em;
28}
29
30h3 {
31 font-size: 20px;
32 margin-bottom: 1em;
33 margin-top: 1em;
34}
35
36pre, code {
37 line-height: 1.5;
38 font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
39}
40
41pre {
42 margin-top: 0.5em;
43}
44
45h1, h2, h3, p {
46 font-family: Arial, sans serif;
47}
48
49h1, h2, h3 {
50 border-bottom: solid #CCC 1px;
51}
52
53.toc_element {
54 margin-top: 0.5em;
55}
56
57.firstline {
58 margin-left: 2 em;
59}
60
61.method {
62 margin-top: 1em;
63 border: solid 1px #CCC;
64 padding: 1em;
65 background: #EEE;
66}
67
68.details {
69 font-weight: bold;
70 font-size: 14px;
71}
72
73</style>
74
Dan O'Mearadd494642020-05-01 07:42:23 -070075<h1><a href="blogger_v3.html">Blogger API v3</a> . <a href="blogger_v3.comments.html">comments</a></h1>
John Asmuth614db982014-04-24 15:46:26 -040076<h2>Instance Methods</h2>
77<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070078 <code><a href="#approve">approve(blogId, postId, commentId, x__xgafv=None)</a></code></p>
79<p class="firstline">Marks a comment as not spam by blog id, post id and comment id.</p>
John Asmuth614db982014-04-24 15:46:26 -040080<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070081 <code><a href="#delete">delete(blogId, postId, commentId, x__xgafv=None)</a></code></p>
82<p class="firstline">Deletes a comment by blog id, post id and comment id.</p>
John Asmuth614db982014-04-24 15:46:26 -040083<p class="toc_element">
Bu Sun Kim65020912020-05-20 12:08:20 -070084 <code><a href="#get">get(blogId, postId, commentId, view=None, x__xgafv=None)</a></code></p>
Dan O'Mearadd494642020-05-01 07:42:23 -070085<p class="firstline">Gets a comment by id.</p>
John Asmuth614db982014-04-24 15:46:26 -040086<p class="toc_element">
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -070087 <code><a href="#list">list(blogId, postId, fetchBodies=None, endDate=None, maxResults=None, status=None, pageToken=None, view=None, startDate=None, x__xgafv=None)</a></code></p>
Dan O'Mearadd494642020-05-01 07:42:23 -070088<p class="firstline">Lists comments.</p>
John Asmuth614db982014-04-24 15:46:26 -040089<p class="toc_element">
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -070090 <code><a href="#listByBlog">listByBlog(blogId, status=None, endDate=None, fetchBodies=None, pageToken=None, maxResults=None, startDate=None, x__xgafv=None)</a></code></p>
Dan O'Mearadd494642020-05-01 07:42:23 -070091<p class="firstline">Lists comments by blog.</p>
John Asmuth614db982014-04-24 15:46:26 -040092<p class="toc_element">
93 <code><a href="#listByBlog_next">listByBlog_next(previous_request, previous_response)</a></code></p>
94<p class="firstline">Retrieves the next page of results.</p>
95<p class="toc_element">
96 <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
97<p class="firstline">Retrieves the next page of results.</p>
98<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070099 <code><a href="#markAsSpam">markAsSpam(blogId, postId, commentId, x__xgafv=None)</a></code></p>
100<p class="firstline">Marks a comment as spam by blog id, post id and comment id.</p>
John Asmuth614db982014-04-24 15:46:26 -0400101<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -0700102 <code><a href="#removeContent">removeContent(blogId, postId, commentId, x__xgafv=None)</a></code></p>
103<p class="firstline">Removes the content of a comment by blog id, post id and comment id.</p>
John Asmuth614db982014-04-24 15:46:26 -0400104<h3>Method Details</h3>
105<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700106 <code class="details" id="approve">approve(blogId, postId, commentId, x__xgafv=None)</code>
107 <pre>Marks a comment as not spam by blog id, post id and comment id.
John Asmuth614db982014-04-24 15:46:26 -0400108
109Args:
Dan O'Mearadd494642020-05-01 07:42:23 -0700110 blogId: string, A parameter (required)
111 postId: string, A parameter (required)
112 commentId: string, A parameter (required)
113 x__xgafv: string, V1 error format.
114 Allowed values
115 1 - v1 error format
116 2 - v2 error format
John Asmuth614db982014-04-24 15:46:26 -0400117
118Returns:
119 An object of the form:
120
121 {
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700122 &quot;post&quot;: { # Data about the post containing this comment.
123 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
124 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700125 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
126 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
Bu Sun Kim65020912020-05-20 12:08:20 -0700127 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700128 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
129 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
130 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
131 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
Bu Sun Kim65020912020-05-20 12:08:20 -0700132 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
133 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
134 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700135 &quot;author&quot;: { # The author of this Comment.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700136 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
137 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
138 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
Bu Sun Kim65020912020-05-20 12:08:20 -0700139 &quot;image&quot;: { # The creator&#x27;s avatar.
140 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
John Asmuth614db982014-04-24 15:46:26 -0400141 },
John Asmuth614db982014-04-24 15:46:26 -0400142 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700143 &quot;blog&quot;: { # Data about the blog containing this comment.
144 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
John Asmuth614db982014-04-24 15:46:26 -0400145 },
John Asmuth614db982014-04-24 15:46:26 -0400146 }</pre>
147</div>
148
149<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700150 <code class="details" id="delete">delete(blogId, postId, commentId, x__xgafv=None)</code>
151 <pre>Deletes a comment by blog id, post id and comment id.
John Asmuth614db982014-04-24 15:46:26 -0400152
153Args:
Dan O'Mearadd494642020-05-01 07:42:23 -0700154 blogId: string, A parameter (required)
155 postId: string, A parameter (required)
156 commentId: string, A parameter (required)
157 x__xgafv: string, V1 error format.
158 Allowed values
159 1 - v1 error format
160 2 - v2 error format
John Asmuth614db982014-04-24 15:46:26 -0400161</pre>
162</div>
163
164<div class="method">
Bu Sun Kim65020912020-05-20 12:08:20 -0700165 <code class="details" id="get">get(blogId, postId, commentId, view=None, x__xgafv=None)</code>
Dan O'Mearadd494642020-05-01 07:42:23 -0700166 <pre>Gets a comment by id.
John Asmuth614db982014-04-24 15:46:26 -0400167
168Args:
Dan O'Mearadd494642020-05-01 07:42:23 -0700169 blogId: string, A parameter (required)
170 postId: string, A parameter (required)
171 commentId: string, A parameter (required)
Bu Sun Kim65020912020-05-20 12:08:20 -0700172 view: string, A parameter
Dan O'Mearadd494642020-05-01 07:42:23 -0700173 x__xgafv: string, V1 error format.
John Asmuth614db982014-04-24 15:46:26 -0400174 Allowed values
Dan O'Mearadd494642020-05-01 07:42:23 -0700175 1 - v1 error format
176 2 - v2 error format
John Asmuth614db982014-04-24 15:46:26 -0400177
178Returns:
179 An object of the form:
180
181 {
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700182 &quot;post&quot;: { # Data about the post containing this comment.
183 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
184 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700185 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
186 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
Bu Sun Kim65020912020-05-20 12:08:20 -0700187 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700188 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
189 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
190 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
191 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
Bu Sun Kim65020912020-05-20 12:08:20 -0700192 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
193 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
194 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700195 &quot;author&quot;: { # The author of this Comment.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700196 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
197 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
198 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
Bu Sun Kim65020912020-05-20 12:08:20 -0700199 &quot;image&quot;: { # The creator&#x27;s avatar.
200 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
John Asmuth614db982014-04-24 15:46:26 -0400201 },
John Asmuth614db982014-04-24 15:46:26 -0400202 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700203 &quot;blog&quot;: { # Data about the blog containing this comment.
204 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
John Asmuth614db982014-04-24 15:46:26 -0400205 },
John Asmuth614db982014-04-24 15:46:26 -0400206 }</pre>
207</div>
208
209<div class="method">
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700210 <code class="details" id="list">list(blogId, postId, fetchBodies=None, endDate=None, maxResults=None, status=None, pageToken=None, view=None, startDate=None, x__xgafv=None)</code>
Dan O'Mearadd494642020-05-01 07:42:23 -0700211 <pre>Lists comments.
John Asmuth614db982014-04-24 15:46:26 -0400212
213Args:
Dan O'Mearadd494642020-05-01 07:42:23 -0700214 blogId: string, A parameter (required)
215 postId: string, A parameter (required)
Bu Sun Kim65020912020-05-20 12:08:20 -0700216 fetchBodies: boolean, A parameter
Dan O'Mearadd494642020-05-01 07:42:23 -0700217 endDate: string, A parameter
Bu Sun Kim65020912020-05-20 12:08:20 -0700218 maxResults: integer, A parameter
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700219 status: string, A parameter
Bu Sun Kim65020912020-05-20 12:08:20 -0700220 pageToken: string, A parameter
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700221 view: string, A parameter
222 startDate: string, A parameter
Dan O'Mearadd494642020-05-01 07:42:23 -0700223 x__xgafv: string, V1 error format.
John Asmuth614db982014-04-24 15:46:26 -0400224 Allowed values
Dan O'Mearadd494642020-05-01 07:42:23 -0700225 1 - v1 error format
226 2 - v2 error format
John Asmuth614db982014-04-24 15:46:26 -0400227
228Returns:
229 An object of the form:
230
231 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700232 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#commentList.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700233 &quot;prevPageToken&quot;: &quot;A String&quot;, # Pagination token to fetch the previous page, if one exists.
Bu Sun Kim65020912020-05-20 12:08:20 -0700234 &quot;items&quot;: [ # The List of Comments for a Post.
John Asmuth614db982014-04-24 15:46:26 -0400235 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700236 &quot;post&quot;: { # Data about the post containing this comment.
237 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
John Asmuth614db982014-04-24 15:46:26 -0400238 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700239 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
240 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
241 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
242 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
243 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
244 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
245 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
246 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
247 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
248 },
249 &quot;author&quot;: { # The author of this Comment.
250 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
251 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
252 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
253 &quot;image&quot;: { # The creator&#x27;s avatar.
254 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
255 },
256 },
257 &quot;blog&quot;: { # Data about the blog containing this comment.
258 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
259 },
John Asmuth614db982014-04-24 15:46:26 -0400260 },
261 ],
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700262 &quot;nextPageToken&quot;: &quot;A String&quot;, # Pagination token to fetch the next page, if one exists.
263 &quot;etag&quot;: &quot;A String&quot;, # Etag of the response.
John Asmuth614db982014-04-24 15:46:26 -0400264 }</pre>
265</div>
266
267<div class="method">
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700268 <code class="details" id="listByBlog">listByBlog(blogId, status=None, endDate=None, fetchBodies=None, pageToken=None, maxResults=None, startDate=None, x__xgafv=None)</code>
Dan O'Mearadd494642020-05-01 07:42:23 -0700269 <pre>Lists comments by blog.
John Asmuth614db982014-04-24 15:46:26 -0400270
271Args:
Dan O'Mearadd494642020-05-01 07:42:23 -0700272 blogId: string, A parameter (required)
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700273 status: string, A parameter (repeated)
Dan O'Mearadd494642020-05-01 07:42:23 -0700274 endDate: string, A parameter
Bu Sun Kim65020912020-05-20 12:08:20 -0700275 fetchBodies: boolean, A parameter
Bu Sun Kim65020912020-05-20 12:08:20 -0700276 pageToken: string, A parameter
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700277 maxResults: integer, A parameter
278 startDate: string, A parameter
Dan O'Mearadd494642020-05-01 07:42:23 -0700279 x__xgafv: string, V1 error format.
Craig Citroe633be12015-03-02 13:40:36 -0800280 Allowed values
Dan O'Mearadd494642020-05-01 07:42:23 -0700281 1 - v1 error format
282 2 - v2 error format
John Asmuth614db982014-04-24 15:46:26 -0400283
284Returns:
285 An object of the form:
286
287 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700288 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#commentList.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700289 &quot;prevPageToken&quot;: &quot;A String&quot;, # Pagination token to fetch the previous page, if one exists.
Bu Sun Kim65020912020-05-20 12:08:20 -0700290 &quot;items&quot;: [ # The List of Comments for a Post.
John Asmuth614db982014-04-24 15:46:26 -0400291 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700292 &quot;post&quot;: { # Data about the post containing this comment.
293 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
John Asmuth614db982014-04-24 15:46:26 -0400294 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700295 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
296 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
297 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
298 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
299 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
300 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
301 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
302 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
303 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
304 },
305 &quot;author&quot;: { # The author of this Comment.
306 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
307 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
308 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
309 &quot;image&quot;: { # The creator&#x27;s avatar.
310 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
311 },
312 },
313 &quot;blog&quot;: { # Data about the blog containing this comment.
314 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
315 },
John Asmuth614db982014-04-24 15:46:26 -0400316 },
317 ],
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700318 &quot;nextPageToken&quot;: &quot;A String&quot;, # Pagination token to fetch the next page, if one exists.
319 &quot;etag&quot;: &quot;A String&quot;, # Etag of the response.
John Asmuth614db982014-04-24 15:46:26 -0400320 }</pre>
321</div>
322
323<div class="method">
324 <code class="details" id="listByBlog_next">listByBlog_next(previous_request, previous_response)</code>
325 <pre>Retrieves the next page of results.
326
327Args:
328 previous_request: The request for the previous page. (required)
329 previous_response: The response from the request for the previous page. (required)
330
331Returns:
Bu Sun Kim65020912020-05-20 12:08:20 -0700332 A request object that you can call &#x27;execute()&#x27; on to request the next
John Asmuth614db982014-04-24 15:46:26 -0400333 page. Returns None if there are no more items in the collection.
334 </pre>
335</div>
336
337<div class="method">
338 <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
339 <pre>Retrieves the next page of results.
340
341Args:
342 previous_request: The request for the previous page. (required)
343 previous_response: The response from the request for the previous page. (required)
344
345Returns:
Bu Sun Kim65020912020-05-20 12:08:20 -0700346 A request object that you can call &#x27;execute()&#x27; on to request the next
John Asmuth614db982014-04-24 15:46:26 -0400347 page. Returns None if there are no more items in the collection.
348 </pre>
349</div>
350
351<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700352 <code class="details" id="markAsSpam">markAsSpam(blogId, postId, commentId, x__xgafv=None)</code>
353 <pre>Marks a comment as spam by blog id, post id and comment id.
John Asmuth614db982014-04-24 15:46:26 -0400354
355Args:
Dan O'Mearadd494642020-05-01 07:42:23 -0700356 blogId: string, A parameter (required)
357 postId: string, A parameter (required)
358 commentId: string, A parameter (required)
359 x__xgafv: string, V1 error format.
360 Allowed values
361 1 - v1 error format
362 2 - v2 error format
John Asmuth614db982014-04-24 15:46:26 -0400363
364Returns:
365 An object of the form:
366
367 {
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700368 &quot;post&quot;: { # Data about the post containing this comment.
369 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
370 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700371 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
372 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
Bu Sun Kim65020912020-05-20 12:08:20 -0700373 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700374 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
375 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
376 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
377 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
Bu Sun Kim65020912020-05-20 12:08:20 -0700378 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
379 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
380 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700381 &quot;author&quot;: { # The author of this Comment.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700382 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
383 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
384 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
Bu Sun Kim65020912020-05-20 12:08:20 -0700385 &quot;image&quot;: { # The creator&#x27;s avatar.
386 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
John Asmuth614db982014-04-24 15:46:26 -0400387 },
John Asmuth614db982014-04-24 15:46:26 -0400388 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700389 &quot;blog&quot;: { # Data about the blog containing this comment.
390 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
John Asmuth614db982014-04-24 15:46:26 -0400391 },
John Asmuth614db982014-04-24 15:46:26 -0400392 }</pre>
393</div>
394
395<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700396 <code class="details" id="removeContent">removeContent(blogId, postId, commentId, x__xgafv=None)</code>
397 <pre>Removes the content of a comment by blog id, post id and comment id.
John Asmuth614db982014-04-24 15:46:26 -0400398
399Args:
Dan O'Mearadd494642020-05-01 07:42:23 -0700400 blogId: string, A parameter (required)
401 postId: string, A parameter (required)
402 commentId: string, A parameter (required)
403 x__xgafv: string, V1 error format.
404 Allowed values
405 1 - v1 error format
406 2 - v2 error format
John Asmuth614db982014-04-24 15:46:26 -0400407
408Returns:
409 An object of the form:
410
411 {
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700412 &quot;post&quot;: { # Data about the post containing this comment.
413 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
414 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700415 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
416 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
Bu Sun Kim65020912020-05-20 12:08:20 -0700417 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700418 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
419 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
420 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
421 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
Bu Sun Kim65020912020-05-20 12:08:20 -0700422 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
423 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
424 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700425 &quot;author&quot;: { # The author of this Comment.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700426 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
427 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
428 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
Bu Sun Kim65020912020-05-20 12:08:20 -0700429 &quot;image&quot;: { # The creator&#x27;s avatar.
430 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
John Asmuth614db982014-04-24 15:46:26 -0400431 },
John Asmuth614db982014-04-24 15:46:26 -0400432 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700433 &quot;blog&quot;: { # Data about the blog containing this comment.
434 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
John Asmuth614db982014-04-24 15:46:26 -0400435 },
John Asmuth614db982014-04-24 15:46:26 -0400436 }</pre>
437</div>
438
439</body></html>