Create video for user
documentedCreate a new video for a specified user and begin the upload.
POST /users/{user_id}/videosVideosno implementation yet0 runsNo 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://api.vimeo.com/users/{{$user_id}}/videos" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"upload": {"approach": "tus", "size": {{$size}}}, "name": "{{$title}}", "description": "{{$description}}", "privacy": {"view": "anybody"}}'