Logo
Zoom Public API Documentation

Get conversation content analysis

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

Get the content analysis for a specific conversation.

Scopes: iq_conversation:read,iq_conversation:read:admin

Rate Limit Label: Medium

 

Body PARAM

Key Datatype Required Description 
analysis_type
string (Required) The content analysis type of conversations to query: * `topics` - Topics analysis. * `nextSteps` - Next steps analysis. * `engagingQuestions` - Engaging questions analysis. * `indicators` - Indicators analysis. * `smartChapters` - Smart Chapters analysis.
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, "summary": "<string>", "smart_chapters": [ { "title": "<string>", "summary": "<string>", "category": "<string>", "start_time": "<string>", "end_time": "<string>" }, { "title": "<string>", "summary": "<string>", "category": "<string>", "start_time": "<string>", "end_time": "<string>" } ], "analysis": [ { "section": [ { "user_id": "<string>", "display_name": "<string>", "text": "<string>", "utterance": "<string>", "label": "<string>", "indicator_name": "<string>", "indicator_id": "<string>", "key_word": "<string>", "marked_by": "es", "start_time": "<string>", "end_time": "<string>" }, { "user_id": "<string>", "display_name": "<string>", "text": "<string>", "utterance": "<string>", "label": "<string>", "indicator_name": "<string>", "indicator_id": "<string>", "key_word": "<string>", "marked_by": "es", "start_time": "<string>", "end_time": "<string>" } ] }, { "section": [ { "user_id": "<string>", "display_name": "<string>", "text": "<string>", "utterance": "<string>", "label": "<string>", "indicator_name": "<string>", "indicator_id": "<string>", "key_word": "<string>", "marked_by": "es", "start_time": "<string>", "end_time": "<string>" }, { "user_id": "<string>", "display_name": "<string>", "text": "<string>", "utterance": "<string>", "label": "<string>", "indicator_name": "<string>", "indicator_id": "<string>", "key_word": "<string>", "marked_by": "the value of the user_id", "start_time": "<string>", "end_time": "<string>" } ] } ] }



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

ENDPOINTS