Welcome!
Docs
Make your requests as POST to /api
in JSON format.
Here is the documentation on how to sign requests.
Intercepted request
Here is an example API call by user {{ user_id }}:
method
api_key
api_sig
vimeo.test.login
{{ api_key }}
{{ api_sig }}
<?xml version="1.0" encoding="UTF-8"?>
<rsp stat="ok">
<user id="{{ user_id }}">
<username>{{ user_name }}</username>
</user>
</rsp>
Target
Try to get him to favorite the video number 1337!
Available APIs
vimeo.test.login
Is the user logged in?
Returns
<user id="151542">
<username>ted</username>
</user>
vimeo.videos.setFavorite
Set a video as a favorite.
Parameters
- int
video_id
(required)
- Mark this video as a favorite.
- boolean
favorite
(required)
- If this is "1", "true" or "yes," we'll set this as a favorite. Otherwise use "0", "false", "no."
Returns
This method returns an empty success response.
<rsp stat="ok"></rsp>