0

I'm using the new Vimeo API and I've successfully changed the title of a video but I also need to change the privacy settings. I thought I'd simply be able to do:

    $lib->request($uri, array('name' => $post_title, 'privacy' => 'disable'), 'PATCH');

But this doesn't work. Any ideas?

Thanks, Helen

user3581244
  • 527
  • 4
  • 10

1 Answers1

1

The docs are a little out of date. The field should be "privacy.view"

Dashron
  • 3,968
  • 2
  • 14
  • 21