curl --request PATCH \
--url https://api.bundle.social/api/v1/misc/youtube/video \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"teamId": "<string>",
"postId": "<string>",
"title": "<string>",
"description": "<string>",
"tags": [
"<string>"
],
"categoryId": "<string>",
"privacyStatus": "public"
}
'{
"success": true,
"permalink": "<string>"
}Update the title, description, tags, category, or privacy status of a published YouTube video.
curl --request PATCH \
--url https://api.bundle.social/api/v1/misc/youtube/video \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"teamId": "<string>",
"postId": "<string>",
"title": "<string>",
"description": "<string>",
"tags": [
"<string>"
],
"categoryId": "<string>",
"privacyStatus": "public"
}
'{
"success": true,
"permalink": "<string>"
}Body
Post ID for reference
The updated video title
The updated video description
The updated tags
The updated category ID
The updated privacy status
public, unlisted, private Was this page helpful?