action cpy_get_api_v1_videos_id_comment_threads { label: "List threads of a video" provider: cpy method: GET path: "/api/v1/videos/{id}/comment-threads" encoding: json output: { properties: { data: { type: "array" items: { properties: { account: { type: "object" } createdAt: { type: "string" format: "date-time" } deletedAt: { type: "string" format: "date-time" } id: { type: "integer" } inReplyToCommentId: { type: "object" } isDeleted: { type: "boolean" } text: { type: "string" format: "html" description: "Text of the comment" } threadId: { type: "object" additionalProperties: true } totalReplies: { type: "integer" } totalRepliesFromVideoAuthor: { type: "integer" } updatedAt: { type: "string" format: "date-time" } url: { type: "string" format: "url" } videoId: { description: "object id for the video" type: "object" } } } } total: { type: "integer" } } } }