action cpy_get_api_v1_videos_id_comment_threads_thread_id { label: "Get a thread" provider: cpy method: GET path: "/api/v1/videos/{id}/comment-threads/{threadId}" encoding: json output: { properties: { children: { type: "array" items: { type: "object" additionalProperties: true } } comment: { 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" } } } } } }