The Frame.io API hooks into their robust video collaboration platform, enabling automated workflows around video reviews, project updates, and asset management. With the API, you can programmatically interact with comments, accounts, projects, and more—perfect for integrating with other tools to streamline video production pipelines.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
frame: {
type: "app",
app: "frame",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.frame.io/v2/accounts`,
headers: {
Authorization: `Bearer ${this.frame.$auth.oauth_access_token}`,
},
})
},
})
Automated Feedback Collection: When a new comment is made in Frame.io, trigger a Pipedream workflow that aggregates feedback and sends a formatted digest to Slack, ensuring immediate team visibility.
Project Progress Tracking: Set up a Pipedream workflow that listens for changes in project status on Frame.io. When a project moves to the next stage, the workflow can update a corresponding task in Asana and notify the team.
Asset Backup and Archival: Create a Pipedream workflow that responds to the upload of new assets to Frame.io, automatically backing them up to Google Drive or Dropbox, providing a secondary storage solution for important files.
Emit new event when an asset is uploaded. See the documentation
Emit new event when a new comment is left on an asset. See the documentation
Emit new event when a new project is created. See the documentation
Emit new event when a new project is created. See the documentation
Creates a new comment on an asset in Frame.io. See the documentation
Performs advanced searching for assets in Frame.io. See the documentation
Frame.io uses OAuth authentication. When you connect your Frame.io account, Pipedream will open a popup window where you can sign into Frame.io and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Frame.io API.
Pipedream requests the following authorization scopes when you connect your account:
presentation.updatecomment.readasset.updatereviewlink.updatewebhook.createaccount.readaction.updatereviewlink.readpresentation.readaction.createpresentation.createauditlog.readteam.createcomment.createteam.readofflinereviewlink.deleteproject.updateproject.deletewebhook.deleteaction.deleteasset.deletewebhook.readasset.createcomment.deletewebhook.updateasset.readcomment.updateproject.readaction.readreviewlink.createpresentation.deleteproject.createteam.updateGEThttps://applications.frame.io/oauth2/auth?client_id={{oauth.client_id}}&redirect_uri={{oauth.redirect_uri}}&state={{oauth.state}}&response_type=code&scope={{oauth.space_separated_scopes}}POSThttps://applications.frame.io/oauth2/tokencontent-type: application/x-www-form-urlencodedaccept: application/jsonredirect_uri={{oauth.redirect_uri}}&grant_type=authorization_code&code={{oauth.code}}POSThttps://applications.frame.io/oauth2/tokencontent-type: application/x-www-form-urlencodedaccept: application/jsongrant_type=refresh_token&refresh_token={{oauth.refresh_token}}