user3581244
user3581244

Reputation: 547

Vimeo API set privacy to disable

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

Upvotes: 0

Views: 545

Answers (1)

Dashron
Dashron

Reputation: 3998

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

Upvotes: 1

Related Questions