youtube

YOUTUBE_UPDATE_VIDEO

Updates metadata for a YouTube video identified by videoId, which must exist; an empty list for tags removes all existing tags.

Remote youtube

Other tools also called YOUTUBE_UPDATE_VIDEO? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "tags": {
      "type": "array",
      "items": {
        "type": "string",
        "properties": {}
      },
      "title": "Tags",
      "default": null,
      "examples": [
        [
          "updatedTag1",
          "updatedTag2"
        ]
      ],
      "nullable": true,
      "description": "New tags, replacing all existing. An empty list removes all. No change if omitted or `None`."
    },
    "title": {
      "type": "string",
      "title": "Title",
      "default": null,
      "examples": [
        "My Updated Awesome Video"
      ],
      "nullable": true,
      "description": "New video title. No change if omitted or `None`."
    },
    "videoId": {
      "type": "string",
      "title": "Video Id",
      "examples": [
        "dQw4w9WgXcQ"
      ],
      "description": "The video's unique YouTube ID, typically found in its URL."
    },
    "categoryId": {
      "type": "string",
      "title": "Category Id",
      "default": null,
      "examples": [
        "22"
      ],
      "nullable": true,
      "description": "New YouTube category ID. No change if omitted or `None`."
    },
    "description": {
      "type": "string",
      "title": "Description",
      "default": null,
      "examples": [
        "This is an updated description of my awesome video."
      ],
      "nullable": true,
      "description": "New video description. No change if omitted or `None`."
    },
    "privacyStatus": {
      "type": "string",
      "title": "Privacy Status",
      "default": null,
      "examples": [
        "public"
      ],
      "nullable": true,
      "description": "New privacy status ('public', 'private', or 'unlisted'). No change if omitted or `None`."
    }
  }
}
          

Provider

youtube →