REST Resource: whitelists
Stay organized with collections
Save and categorize content based on your preferences.
Resource: Whitelist
A whitelist
resource lets a content owner indicate that it does not want to claim any videos uploaded to a particular channel even though that channel is not owned or managed by the content owner. An whitelist
resource represents a whitelisted channel for a content owner. Whitelisted channels are channels that are not owned or managed by you, but you would like to whitelist so that no claims from your assets are placed on videos uploaded to these channels.
All rights reserved. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-08-20 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 2025-08-20 UTC."],[[["\u003cp\u003eA \u003ccode\u003ewhitelist\u003c/code\u003e resource allows content owners to specify channels where they will not claim any uploaded videos, even if the channel is not owned by them.\u003c/p\u003e\n"],["\u003cp\u003eThe JSON representation of a \u003ccode\u003ewhitelist\u003c/code\u003e resource includes \u003ccode\u003ekind\u003c/code\u003e, \u003ccode\u003etitle\u003c/code\u003e, and \u003ccode\u003eid\u003c/code\u003e fields, identifying the resource type, channel title, and unique channel ID respectively.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003ewhitelist\u003c/code\u003e resource supports four main methods: \u003ccode\u003edelete\u003c/code\u003e to remove a whitelisted channel, \u003ccode\u003eget\u003c/code\u003e to retrieve a specific channel, \u003ccode\u003einsert\u003c/code\u003e to whitelist a channel, and \u003ccode\u003elist\u003c/code\u003e to view all whitelisted channels.\u003c/p\u003e\n"]]],["A `whitelist` resource represents a channel exempted from content owner claims. Key actions include: adding a channel to the whitelist (`insert`), removing a channel (`delete`), retrieving a specific channel (`get`), and listing all whitelisted channels (`list`). The `whitelist` resource is identified by `kind` which is `youtubePartner#whitelist`, a unique channel `id`, and `title`. The whitelist ensures content owner assets do not claim videos on specified channels not managed by the content owner.\n"],null,["# REST Resource: whitelists\n\n- [Resource: Whitelist](#Whitelist)\n - [JSON representation](#Whitelist.SCHEMA_REPRESENTATION)\n- [Methods](#METHODS_SUMMARY)\n\nResource: Whitelist\n-------------------\n\nA `whitelist` resource lets a content owner indicate that it does not want to claim any videos uploaded to a particular channel even though that channel is not owned or managed by the content owner. An `whitelist` resource represents a whitelisted channel for a content owner. Whitelisted channels are channels that are not owned or managed by you, but you would like to whitelist so that no claims from your assets are placed on videos uploaded to these channels.\n\n| JSON representation |\n|-----------------------------------------------------------|\n| ``` { \"kind\": string, \"title\": string, \"id\": string } ``` |\n\n| Fields ||\n|---------|-------------------------------------------------------------------------------------------------------------|\n| `kind` | `string` The type of the API resource. For `whitelist` resources, this value is `youtubePartner#whitelist`. |\n| `title` | `string` Title of the whitelisted YouTube channel. |\n| `id` | `string` The YouTube channel ID that uniquely identifies the whitelisted channel. |\n\n| Methods ------- ||\n|--------------------------------------------------------------------|---------------------------------------------------------------|\n| ### [delete](/youtube/partner/reference/rest/v1/whitelists/delete) | Removes a whitelisted channel for a content owner. |\n| ### [get](/youtube/partner/reference/rest/v1/whitelists/get) | Retrieves a specific whitelisted channel by ID. |\n| ### [insert](/youtube/partner/reference/rest/v1/whitelists/insert) | Whitelist a YouTube channel for your content owner. |\n| ### [list](/youtube/partner/reference/rest/v1/whitelists/list) | Retrieves a list of whitelisted channels for a content owner. |"]]