Skip to main content
PATCH
/
api
/
v1
/
misc
/
youtube
/
video
Edit YouTube video metadata
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>"
}

Authorizations

x-api-key
string
header
required

Body

application/json

Body

teamId
string
required
postId
string
required

Post ID for reference

title
string

The updated video title

description
string

The updated video description

tags
string[]

The updated tags

categoryId
string

The updated category ID

privacyStatus
enum<string>

The updated privacy status

Available options:
public,
unlisted,
private

Response

200

success
boolean
required