Logo
Zoom Public API Documentation

Get conversation comments

GET {{baseUrl}}/iq/conversations/:conversationId/comments?page_size=30&next_page_token=<string>

Get comments for a specific conversation.

Scopes: iq_comment:read,iq_comment:read:admin

Rate Limit Label: Medium

 

Body PARAM

Key Datatype Required Description 
page_size
number The number of records returned within a single API call.
next_page_token
string The next page token is used to paginate through large result sets. A next page token will be returned whenever the set of available results exceeds the current page size. The expiration period for this token is 15 minutes.



HEADERS

Key Datatype Required Description 
Accept
string




RESPONSES

status OK

{ "next_page_token": "<string>", "page_size": 30, "comments": [ { "id": "<string>", "parent_comment_id": "<string>", "user_name": "<string>", "user_email": "<string>", "created_time": "<dateTime>", "last_modified_time": "<dateTime>", "comment": "<string>", "mention_users": [ { "user_id": "<string>", "user_name": "<string>" }, { "user_id": "<string>", "user_name": "<string>" } ], "mention_teams": [ { "team_id": "<string>", "team_name": "<string>" }, { "team_id": "<string>", "team_name": "<string>" } ], "is_private": "<boolean>", "time_in_recording": "<string>" }, { "id": "<string>", "parent_comment_id": "<string>", "user_name": "<string>", "user_email": "<string>", "created_time": "<dateTime>", "last_modified_time": "<dateTime>", "comment": "<string>", "mention_users": [ { "user_id": "<string>", "user_name": "<string>" }, { "user_id": "<string>", "user_name": "<string>" } ], "mention_teams": [ { "team_id": "<string>", "team_name": "<string>" }, { "team_id": "<string>", "team_name": "<string>" } ], "is_private": "<boolean>", "time_in_recording": "<string>" } ] }



Curl
curl -X GET 'https://api.zoom.us/v2/iq/conversations/:conversationId/comments?page_size=30&next_page_token=<string>?page_size=30&next_page_token=<string>' -H 'Accept: application/json'

ENDPOINTS