Youtube · Example Payload

Youtube Youtubecommentthreadslist Example

GoogleMediaSocialStreamingVideoVideos

Youtube Youtubecommentthreadslist Example is an example object payload from Youtube, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummaryrequestExamplesresponseExamples

Example Payload

Raw ↑
{
  "operationId": "youtube.commentThreads.list",
  "method": "GET",
  "path": "/commentThreads",
  "summary": "Youtube List Comment Threads",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "YoutubeCommentthreadsList200Example",
      "example": {
        "kind": "youtube#video",
        "etag": "XI7nbFXulYBIpL0ayR_gDh3eu1k",
        "nextPageToken": "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9",
        "pageInfo": {
          "totalResults": 42,
          "resultsPerPage": 10
        },
        "items": [
          {
            "kind": "youtube#video",
            "etag": "XI7nbFXulYBIpL0ayR_gDh3eu1k",
            "id": "abc123def456",
            "snippet": {
              "channelId": "500123",
              "videoId": "500123",
              "canReply": true,
              "totalReplyCount": 42,
              "isPublic": true
            },
            "replies": {
              "comments": {}
            }
          }
        ]
      }
    }
  ]
}