Skip Navigation
Show nav
Dev Center
  • Get Started
  • Documentation
  • Changelog
  • Search
  • Get Started
    • Node.js
    • Ruby on Rails
    • Ruby
    • Python
    • Java
    • PHP
    • Go
    • Scala
    • Clojure
    • .NET
  • Documentation
  • Changelog
  • More
    Additional Resources
    • Home
    • Elements
    • Products
    • Pricing
    • Careers
    • Help
    • Status
    • Events
    • Podcasts
    • Compliance Center
    Heroku Blog

    Heroku Blog

    Find out what's new with Heroku on our blog.

    Visit Blog
  • Log inorSign up
Hide categories

Categories

  • Heroku Architecture
    • Compute (Dynos)
      • Dyno Management
      • Dyno Concepts
      • Dyno Behavior
      • Dyno Reference
      • Dyno Troubleshooting
    • Stacks (operating system images)
    • Networking & DNS
    • Platform Policies
    • Platform Principles
  • Developer Tools
    • Command Line
    • Heroku VS Code Extension
  • Deployment
    • Deploying with Git
    • Deploying with Docker
    • Deployment Integrations
  • Continuous Delivery & Integration (Heroku Flow)
    • Continuous Integration
  • Language Support
    • Node.js
      • Working with Node.js
      • Troubleshooting Node.js Apps
      • Node.js Behavior in Heroku
    • Ruby
      • Rails Support
      • Working with Bundler
      • Working with Ruby
      • Ruby Behavior in Heroku
      • Troubleshooting Ruby Apps
    • Python
      • Working with Python
      • Background Jobs in Python
      • Python Behavior in Heroku
      • Working with Django
    • Java
      • Java Behavior in Heroku
      • Working with Java
      • Working with Maven
      • Working with Spring Boot
      • Troubleshooting Java Apps
    • PHP
      • PHP Behavior in Heroku
      • Working with PHP
    • Go
      • Go Dependency Management
    • Scala
    • Clojure
    • .NET
      • Working with .NET
  • Databases & Data Management
    • Heroku Postgres
      • Postgres Basics
      • Postgres Getting Started
      • Postgres Performance
      • Postgres Data Transfer & Preservation
      • Postgres Availability
      • Postgres Special Topics
      • Migrating to Heroku Postgres
    • Heroku Key-Value Store
    • Apache Kafka on Heroku
    • Other Data Stores
  • AI
    • Model Context Protocol
    • Vector Database
    • Heroku Inference
      • Inference API
      • Quick Start Guides
      • AI Models
      • Inference Essentials
    • Working with AI
  • Monitoring & Metrics
    • Logging
  • App Performance
  • Add-ons
    • All Add-ons
  • Collaboration
  • Security
    • App Security
    • Identities & Authentication
      • Single Sign-on (SSO)
    • Private Spaces
      • Infrastructure Networking
    • Compliance
  • Heroku Enterprise
    • Enterprise Accounts
    • Enterprise Teams
    • Heroku Connect (Salesforce sync)
      • Heroku Connect Administration
      • Heroku Connect Reference
      • Heroku Connect Troubleshooting
  • Patterns & Best Practices
  • Extending Heroku
    • Platform API
    • App Webhooks
    • Heroku Labs
    • Building Add-ons
      • Add-on Development Tasks
      • Add-on APIs
      • Add-on Guidelines & Requirements
    • Building CLI Plugins
    • Developing Buildpacks
    • Dev Center
  • Accounts & Billing
  • Troubleshooting & Support
  • Integrating with Salesforce
  • Add-ons
  • All Add-ons
  • EasyMovie
EasyMovie

This add-on is operated by EasyMovie

EasyMovie is the enterprise video platform to accelerate your sales efficiency.

EasyMovie

Last updated September 21, 2021

Table of Contents

  • Provisioning the add-on
  • Dashboard
  • Managing videos
  • Migrating between plans
  • Removing the add-on
  • Support

Easy Movie allows companies to leverage their employees to create authentic videos at scale. This add-on is designed to help developers integrate the EasyMovie platform with their apps on Heroku.

To create a video in a few minutes you need to :

  1. Choose a template

  2. Film by following the instructions and our real-time tips while you film

  3. Add the text that will appear in the video

  4. Your video is created automatically with your logo, colors, and editable text

Use this add-on to manage, list and retrieve the videos.

Provisioning the add-on

Easy Movie can be attached to a Heroku application via the CLI:

A list of all plans available can be found here.

$ heroku addons:create easymovie
-----> Adding easymovie to sharp-mountain-4005... done, v18 (free)

After you provision Easy Movie, the EASYMOVIE_URL config var is available in your app’s configuration. It contains the URL to access the API. You can confirm this via the heroku config:get command:

$ heroku config:get EASYMOVIE_URL
http://user:pass@instance.ip/resourceid

Dashboard

The Easy Movie dashboard allows you to see the status of each video you send to the platform.

You can access the dashboard via the CLI:

$ heroku addons:open easymovie
Opening easymovie for sharp-mountain-4005

or by visiting the Heroku Dashboard and selecting the application in question. Select Easy Movie from the Add-ons menu.

Managing videos

Create a new video request

To create a new video request, you need to make POST request to the EASYMOVIE_URL config var. The payload associated with the POST request is :

{
    "title": "Discover our new CRM",
    "frames" : [
        {
            "url" : "https://linktothevideo.com",
            "order" : 1,
            "text": "We migrate our CRM to Salesforce",
        }
    ],
    "template": "1",
    "comment": "This video is for internal purpose",
    "external_id": "video1"
}

Retrieving the list of video requests

To retrieve the list of your video requests (and your final video URL), you need to make a GET request to the EASYMOVIE_URL config var. It will contains an array of all the video requests you made.

[
    {
        "frames": [
            {
                "createdAt": "2019-09-24T14:25:50.592Z",
                "updatedAt": "2019-09-24T14:25:50.592Z",
                "id": "5d8a276e6b2bd60017ddecf2",
                "url": "https://linktothevideo.com",
                "order": 1,
                "text": "We migrate our CRM to Salesforce",
                "video": "5d8a276e6b2bd60017ddecf1"
            }
        ],
        "createdAt": "2019-09-24T14:25:50.552Z",
        "updatedAt": "2019-09-24T14:25:50.552Z",
        "id": "5d8a276e6b2bd60017ddecf1",
        "title": "Discover our new CRM",
        "comment": "This video is for internal purpose",
        "external_id": "video1",
        "final": "",
        "template": "1",
        "status": "pending",
        "heroku": "5d6709a22bcd8a00177b4bad"
    }
]

Migrating between plans

Application owners should carefully manage the migration timing to ensure proper application function during the migration process.

Use the heroku addons:upgrade command to migrate to a new plan.

$ heroku addons:upgrade easymovie:newplan
-----> Upgrading easymovie:newplan to sharp-mountain-4005... done, v18 (free)
       Your plan has been updated to: easymovie:newplan

Removing the add-on

You can remove Easy Movie via the CLI:

This will destroy all associated data and cannot be undone!

$ heroku addons:destroy easymovie
-----> Removing easymovie from sharp-mountain-4005... done, v20 (free)

Support

All Easy Movie support and runtime issues should be submitted via one of the Heroku Support channels. Any non-support related issues or product feedback is welcome on our contact form.

Keep reading

  • All Add-ons

Feedback

Log in to submit feedback.

Zara 4 Edge

Information & Support

  • Getting Started
  • Documentation
  • Changelog
  • Compliance Center
  • Training & Education
  • Blog
  • Support Channels
  • Status

Language Reference

  • Node.js
  • Ruby
  • Java
  • PHP
  • Python
  • Go
  • Scala
  • Clojure
  • .NET

Other Resources

  • Careers
  • Elements
  • Products
  • Pricing
  • RSS
    • Dev Center Articles
    • Dev Center Changelog
    • Heroku Blog
    • Heroku News Blog
    • Heroku Engineering Blog
  • Twitter
    • Dev Center Articles
    • Dev Center Changelog
    • Heroku
    • Heroku Status
  • Github
  • LinkedIn
  • © 2025 Salesforce, Inc. All rights reserved. Various trademarks held by their respective owners. Salesforce Tower, 415 Mission Street, 3rd Floor, San Francisco, CA 94105, United States
  • heroku.com
  • Legal
  • Terms of Service
  • Privacy Information
  • Responsible Disclosure
  • Trust
  • Contact
  • Cookie Preferences
  • Your Privacy Choices