For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Developer Tools
CommunityContact UsConsole
DocsAPI Reference
DocsAPI Reference
  • Getting Started
    • Welcome to Frame.io V2 API
    • Key Concepts
    • Authentication
  • Migration
    • V2 to V4 Migration Guide
  • OAuth 2 Applications
    • OAuth 2 Code Authorization Flow
    • Building an OAuth2 App
    • Refreshing OAuth 2 Tokens
  • Workflows - Assets
    • Reading the File Tree
    • Uploading Assets
    • Manage Version Stacks
    • Working with Annotations
    • Search for Assets
  • Workflows - Projects
    • Working with Review Links
    • Gather All Comments from a Project
  • Workflows - Admin
    • User Management
    • Working with Audit Logs
  • Automations - Webhooks
    • Webhooks Overview
    • Comment Workflows with Zapier
  • Automations - Zapier
    • Zapier Basics
    • Frame.io Resources in Zapier
    • Upload Assets to Frame.io using Zapier
    • Webhooks in Zapier
  • Custom Actions
    • Custom Actions Overview
    • Three Ways to Deploy Custom Actions
    • Deploy Custom Actions to Zapier
  • Other Tools
    • Using ngrok
    • Using Glitch
  • Troubleshooting
    • API Error Codes
    • Rate Limits
    • Browser Support
  • Deprecated
    • How to - Authorize (Hardware)
    • How to - Authorize (Application)
    • How to - Manage Auth (Hardware)
    • How to - Manage Auth (Application)

© 2026 Adobe Inc. All rights reserved.

TermsPrivacyDo not sell or share my personal information
Developer-friendly docs for your API
Logo
Developer Tools
CommunityContact UsConsole
On this page
  • Architecture
  • Set up Zapier and create your Custom Action
  • Test the Action
  • Add a ‘Find Asset’ step to Zapier
  • Send the Asset to your destination
  • Where to go from here
  • Rolling your own app
Custom Actions

Deploy Custom Actions to Zapier

Was this page helpful?
Previous

Using ngrok

Next
First time working with Custom Actions?

Learn about the feature on the overview page.

As part of your media workflow, you might need Frame.io media to flow into publishing channels like YouTube and Wistia, or storage destinations like Google Drive or an Amazon S3 archive.

While you can use Zapier Triggers to automate your workflows, Custom Actions allow you to create a menu option inside Frame.io to that gives you an additional level of control for streamlining delivery of media to external locations; and because Custom Actions are just on-demand webhooks, you can hook them up to Zapier as custom triggers. Simply set it up once, and your Team Members and Collaborators can access the automation within Frame.io.

This guide teaches you how connect Frame.io Custom Actions to Zapier and deliver media to a third-party app or service.

Note: Webhooks are a Premium feature in Zapier. For a way to deploy Custom Actions at minimal cost, consider writing your own serverless function.

Architecture

Zapier Custom Action Architecture

Set up Zapier and create your Custom Action

Create a new Zap in Zapier. For the initial trigger select Zap - Webhooks by Zapier. Set the Action to “Catch Hook.” In this case, no customization is required, so click through to the next stage:

Frame.io Zapier Custom Action - Set up Webhook

Test the Action

Take a minute to test the Custom Action in Frame.io. Verify the action generates a request that gets captured in Zapier:

Frame.io Zapier Custom Action - Test the action
Tip

Use the logs on our developer site to explore the Custom Action payload

Add a ‘Find Asset’ step to Zapier

The Custom Action payload merely references your Asset - it does not contain the file. An additional step is required to tell Zapier where to pull the file from. Add a ‘search’ trigger to the Zap - Frame.io - Find Asset

Here’s the Find Asset set-up in action:

Frame.io Zapier Custom Action - Add find asset step

You’re now passing more information about the asset to Zapier, including its Name, the original file, and each of the transcodes Frame.io has run on the file.

Send the Asset to your destination

For demonstration purposes we’ll deliver the file to Google Drive:

Frame.io Zapier Custom Action - send to Google Drive

Where to go from here

While Zapier is arguably the easiest way to deploy actions, it poses some limitations. Primarily, you cannot communicate with your user in the full request-response pattern that Custom Actions supports. The user only receives a default “Success!” message — meaning Zapier handled the webhook and triggered the chain of actions in the Zap:

Custom Action Success Message

This can be misleading, as the “Success!” message just indicates a successful handoff, and will appear even if something breaks in the Zapier workflow itself. For more information on troubleshooting Zapier itself, check out their guide on exploring task history.

Rolling your own app

Writing a small server app or using lambda functions allows you to handle user inputs and create multiple code paths, which is a handy way to send files to multiple destinations, handle file types differently, or leverage information about the Frame.io user in your workflow automation.