Video
This part of the REST API handles video listing that should be used on public places like a play-site.
| Resource |
Method |
Description |
|
get video
|
GET
|
Returns data for a single video that is publicly accessible (published=true and a publish date that have passed). If the requested video isn't publicly accessible it will return a 404. This request it's possible to use JSONP responses by using the callback-parameter.
|
|
get transcoding progress
|
GET
|
This request is used for receiving information on the transcoding progress for a video file.
|
|
list videos on site
|
GET
|
Use this request to list videos on a site. You filter your request based on categories as well as timespan and sort the data on several different values.
|
|
toplist for videos on site
|
GET
|
Use this request to make a toplist for videos on a site over a specified period of time. You filter your request based on categories as well as timespan. The timespan is the time period used to summarize the number of impressions for each video and then order videos by number of impressions. .
|
Live
This part of the REST API handles liveshow listing that should be used on public places like a play-site.
| Resource |
Method |
Description |
|
get liveshow
|
GET
|
Returns data for a single liveshow that is publicly accessible (published=true). If the requested liveshow isn't publicly accessible it will return a 404. This request it's possible to use JSONP responses by using the callback-parameter.
|
|
list liveshows on site
|
GET
|
Returns a list of liveshows for the specified site. By default this request returns the 20 most recently created liveshows, but this can easily be changed by using either the timespan or sorting parameters. This request will only return public liveshows which is defined by its visible_in_portal-parameter. When visible_in_portal is set to false for a liveshow, it will not be returned...
|
Category
This part of the REST API handles category listing that should be used on public places like a play-site.
| Resource |
Method |
Description |
|
list categories on site
|
GET
|
Returns up to 200 categories on the site. Categories are ordered in a tree structure with parent categories and subcategories and this can be used when filtering out categories on a site in this request. There are two parameter for filtering out categories; the first one is only_root which only returns categories without a parent category, the other parameter is parent, who when used only returns categories with the specified parent category... |