Video Review and Collaboration Software
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
Run any Bash in a Pipedream step within your workflow. Refer to the Pipedream Bash docs to learn more.
Creates a new comment on an asset in Frame.io. See the documentation
Performs advanced searching for assets in Frame.io. See the documentation
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}`,
},
})
},
})
# $PIPEDREAM_STEPS file contains data from previous steps
cat $PIPEDREAM_STEPS | jq .trigger.context.id
# Write data to $PIPEDREAM_EXPORTS to return it from the step
# Exports must be written as key=value
echo foo=bar >> $PIPEDREAM_EXPORTS