Sign in

Update video

documented

Update a video's metadata.

PUT /videosVideosno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://www.googleapis.com/youtube/v3/videos?part=snippet,status" -X PUT -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" -H "Content-Type: application/json" -H "Accept: application/json" -d '{"id": "{{$video_id}}", "snippet": { "title": "{{$title}}", "description": "{{$description}}", "categoryId": "{{$categoryId}}", "tags": ["{{$tag1}}","{{$tag2}}"] }, "status": { "privacyStatus": "{{$privacyStatus}}", "embeddable": {{$embeddable}} } }'