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.update
comment.read
asset.update
reviewlink.update
webhook.create
account.read
action.update
reviewlink.read
presentation.read
action.create
presentation.create
auditlog.read
team.create
comment.create
team.read
offline
reviewlink.delete
project.update
project.delete
webhook.delete
action.delete
asset.delete
webhook.read
asset.create
comment.delete
webhook.update
asset.read
comment.update
project.read
action.read
reviewlink.create
presentation.delete
project.create
team.update
GET
https://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}}
POST
https://applications.frame.io/oauth2/token
content-type: application/x-www-form-urlencoded
accept: application/json
redirect_uri={{oauth.redirect_uri}}
&
grant_type=authorization_code
&
code={{oauth.code}}
POST
https://applications.frame.io/oauth2/token
content-type: application/x-www-form-urlencoded
accept: application/json
grant_type=refresh_token
&
refresh_token={{oauth.refresh_token}}