Marking videos as final allows you to filter videos in moderation to only show those.
Given the token of a video, you can make an api call like this:
var application = new ZiggeoApi.V2.Application( {token:"APP_TOKEN"} );
application.videos.update("VIDEO_TOKEN", {submitted: true}, {
success: function () { ... }, failure: function () { ... }
});
Comments