PlaylistImages
Stay organized with collections
Save and categorize content based on your preferences.
A playlistImage
resource identifies
the thumbnail image associated with a playlist.
Methods
The API supports the following methods for playlistImages
resources:
- list
- Returns a collection of playlist images that match the API request parameters.
Try it now.
- insert
- Adds a thumbail image to a playlist.
Try it now.
- update
- Updates the thumbnail image for an existing playlist.
Try it now.
- delete
- Deletes a playlist thumbnail image.
Try it now.
Resource representation
The following JSON structure shows the format of a playlistImages
resource:
{
"kind": "youtube#playlistImage",
"id": string,
"snippet": {
"playlistId": string,
"type": string,
"width": string,
"height": string,
}
}
Properties
The following table defines the properties that appear in this resource:
Properties |
kind |
string
Identifies the API resource's type. The value will be youtube#playlistImage . |
id |
string
The ID that YouTube uses to uniquely identify the playlist image. |
snippet |
object
The snippet object contains basic details about the playlist image, such as its type and dimensions. |
snippet.playlistId |
string
The playlist ID of the playlist this image is associated with. |
snippet.type |
string
The image type.
|
snippet.width |
string
The image's width. |
snippet.height |
string
The images's height. |
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-08-16 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-08-16 UTC."],[[["A playlistImage resource in the YouTube API represents the thumbnail image associated with a specific playlist."],["The API provides methods to list, insert, update, and delete playlist images, allowing for comprehensive management of playlist thumbnails."],["The `playlistImages` resource contains properties such as `kind`, `id`, and `snippet`, with the `snippet` object detailing the associated playlist's ID, image type, width, and height."],["The API's `playlistImages` resource structure is in JSON format, and the value of `kind` is always `youtube#playlistImage`."]]],["The `playlistImage` resource represents a playlist's thumbnail. The API provides methods to interact with these images: `list` retrieves images, `insert` adds an image, `update` modifies an existing image, and `delete` removes an image. Each `playlistImage` resource contains an `id`, `kind` which will always be `youtube#playlistImage`, and a `snippet` with details like `playlistId`, `type`, `width`, and `height` of the image.\n"]]