← Hive + Amara integrations

Add Video with Amara API on New Action Created from Hive API

Pipedream makes it easy to connect APIs for Amara, Hive and 3,000+ other apps remarkably fast.

Trigger workflow on
New Action Created from the Hive API
Next, do this
Add Video with the Amara API
No credit card required
Intro to Pipedream
Watch us build a workflow
Watch us build a workflow
8 min
Watch now ➜

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo

Developers Pipedream

Getting Started

This integration creates a workflow with a Hive trigger and Amara action. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Select this integration
  2. Configure the New Action Created trigger
    1. Connect your Hive account
    2. Configure Polling interval
    3. Optional- Select a Workspace Id
  3. Configure the Add Video action
    1. Connect your Amara account
    2. Configure Video URL
    3. Optional- Configure Team
    4. Optional- Select a Primary audio language code
    5. Optional- Select a Project
    6. Optional- Configure Title
    7. Optional- Configure Description
    8. Optional- Configure Duration
    9. Optional- Configure Thumbnail
    10. Optional- Configure Metadata
  4. Deploy the workflow
  5. Send a test event to validate your setup
  6. Turn on the trigger

Details

This integration uses pre-built, source-available components from Pipedream's GitHub repo. These components are developed by Pipedream and the community, and verified and maintained by Pipedream.

To contribute an update to an existing component or create a new component, create a PR on GitHub. If you're new to Pipedream component development, you can start with quickstarts for trigger span and action development, and then review the component API reference.

Trigger

Description:Emit new event when a new action is created.
Version:0.0.1
Key:hive-new-action-created

Hive Overview

The Hive API allows for robust interaction with Hive's project and team management tools. By leveraging the Hive API within Pipedream, you can automate tasks, sync data across platforms, and create custom workflows that enhance productivity. For instance, you could automate project creation, update task statuses, or sync information to other business tools. Pipedream's serverless platform simplifies integration, enabling you to focus on crafting workflows without worrying about infrastructure.

Trigger Code

import common from "../common/base.mjs";

export default {
  ...common,
  key: "hive-new-action-created",
  name: "New Action Created",
  version: "0.0.1",
  description: "Emit new event when a new action is created.",
  type: "source",
  dedupe: "unique",
  methods: {
    ...common.methods,
    getFunction(hive) {
      return hive.listActions;
    },
    getSummary(actionId) {
      return `A new action with id: "${actionId}" was created!`;
    },
    getField() {
      return "createdAt";
    },
  },
};

Trigger Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI and CLI.
LabelPropTypeDescription
HivehiveappThis component uses the Hive app.
N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.
Polling intervaltimer$.interface.timer

Pipedream will poll the Hive on this schedule

Workspace IdworkspaceIdstringSelect a value from the drop down menu.

Trigger Authentication

Hive uses API keys for authentication. When you connect your Hive account, Pipedream securely stores the keys so you can easily authenticate to Hive APIs in both code and no-code steps.

You can get your API Key, User ID, and Workspace ID in the profile menu on the top right, then Edit Profile > API Info.

About Hive

An all-in-one solution for software and operations to help you manage your D2C brand throughout fulfillment and beyond.

Action

Description:Add a video. [See the docs here](https://apidocs.amara.org/#add-a-video)
Version:0.0.3
Key:amara-add-video

Amara Overview

The Amara API provides programmatic access to Amara’s community-driven subtitle creation and translation services. With this API, you can automate subtitle workflows, streamline video content translation, and integrate with other services to create efficient localization processes. The API allows you to manage videos, subtitles, and teams, offering a doorway to effortlessly scaling your video content to reach global audiences.

Action Code

import amara from "../../amara.app.mjs";
import utils from "../common/utils.mjs";

export default {
  key: "amara-add-video",
  name: "Add Video",
  description: "Add a video. [See the docs here](https://apidocs.amara.org/#add-a-video)",
  type: "action",
  version: "0.0.3",
  annotations: {
    destructiveHint: false,
    openWorldHint: true,
    readOnlyHint: false,
  },
  props: {
    amara,
    videoUrl: {
      propDefinition: [
        amara,
        "videoUrl",
      ],
    },
    team: {
      description: "Team slug for the video or null to remove it from its team",
      propDefinition: [
        amara,
        "team",
      ],
    },
    primaryAudioLanguageCode: {
      propDefinition: [
        amara,
        "primaryAudioLanguageCode",
      ],
    },
    project: {
      propDefinition: [
        amara,
        "project",
        ({ team }) => ({
          team,
        }),
      ],
    },
    title: {
      type: "string",
      label: "Title",
      description: "Title of the video",
      optional: true,
    },
    description: {
      type: "string",
      label: "Description",
      description: "About this video",
      optional: true,
    },
    duration: {
      type: "integer",
      label: "Duration",
      description: "Duration in seconds, in case it can not be retrieved automatically by Amara",
      optional: true,
    },
    thumbnail: {
      type: "string",
      label: "Thumbnail",
      description: "URL to the video thumbnail",
      optional: true,
    },
    metadata:	{
      type: "object",
      label: "Metadata",
      description: "Dictionary of metadata key/value pairs. These handle extra information about the video. Right now the type keys supported are `speaker-name` and `location`. Values can be any string.",
      optional: true,
    },
  },
  async run({ $ }) {
    const {
      videoUrl,
      title,
      description,
      primaryAudioLanguageCode,
      thumbnail,
      metadata,
      team,
      project,
    } = this;

    const duration = utils.emptyStrToUndefined(this.duration);

    const data = {
      video_url: videoUrl,
      title,
      description,
      duration,
      primary_audio_language_code: primaryAudioLanguageCode,
      thumbnail,
      metadata,
      team: team || null,
      project,
    };

    const response = await this.amara.addVideo({
      $,
      data,
    });

    $.export("$summary", `Successfully added video, "${response.title}"`);

    return response;
  },
};

Action Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI.

LabelPropTypeDescription
AmaraamaraappThis component uses the Amara app.
Video URLvideoUrlstring

The URL for the video. Any URL that Amara accepts will work here. You can send the URL for a file (e.g. http:///www.example.com/my-video.ogv), or a link to one of the accepted providers (YouTube, Vimeo).

Teamteamstring

Team slug for the video or null to remove it from its team

Primary audio language codeprimaryAudioLanguageCodestringSelect a value from the drop down menu.
ProjectprojectstringSelect a value from the drop down menu.
Titletitlestring

Title of the video

Descriptiondescriptionstring

About this video

Durationdurationinteger

Duration in seconds, in case it can not be retrieved automatically by Amara

Thumbnailthumbnailstring

URL to the video thumbnail

Metadatametadataobject

Dictionary of metadata key/value pairs. These handle extra information about the video. Right now the type keys supported are speaker-name and location. Values can be any string.

Action Authentication

Amara uses API keys for authentication. When you connect your Amara account, Pipedream securely stores the keys so you can easily authenticate to Amara APIs in both code and no-code steps.

In order to get an API Key, create a user on the Amara website, then go to the account page. At the bottom of the page you will find a "Generate new key" button.

About Amara

The Amara Editor is an award-winning caption and subtitle editor that’s free to use! It’s fun and easy to learn, and encourages collaboration.

More Ways to Connect Amara + Hive

Create Action For Project with Hive API on Subtitles Published from Amara API
Amara + Hive
 
Try it
Create Action For Project with Hive API on Subtitles Unpublished from Amara API
Amara + Hive
 
Try it
Create Action For Project with Hive API on Video Added from Amara API
Amara + Hive
 
Try it
Create Action For Project with Hive API on Video Deleted from Amara API
Amara + Hive
 
Try it
Create Action For Project with Hive API on Video Made Primary from Amara API
Amara + Hive
 
Try it
New Action Created from the Hive API

Emit new event when a new action is created.

 
Try it
New Action Updated from the Hive API

Emit new event when an action is updated.

 
Try it
Subtitles Published from the Amara API

Emit new event when subtitles have been published. See the docs here

 
Try it
Subtitles Unpublished from the Amara API

Emit new event when subtitles have been unpublished. See the docs here

 
Try it
Video Added from the Amara API

Emit new event when a video is added. See the docs here

 
Try it
Create Action For Project with the Hive API

Create an action for given project See the documentation

 
Try it
Create Action For Workspace with the Hive API

Create an action for given workspace See the documentation

 
Try it
Add New Subtitles with the Amara API

Add new subtitles. See the docs here

 
Try it
Add Video with the Amara API

Add a video. See the docs here

 
Try it
Create Subtitle Language with the Amara API

Create a subtitle language. See the docs here

 
Try it

Explore Other Apps

1
-
24
of
3,000+
apps by most popular

Node
Node
Anything you can do with Node.js, you can do in a Pipedream workflow. This includes using most of npm's 400,000+ packages.
Python
Python
Anything you can do in Python can be done in a Pipedream Workflow. This includes using any of the 350,000+ PyPi packages available in your Python powered workflows.
Notion
Notion
Notion is a new tool that blends your everyday work apps into one. It's the all-in-one workspace for you and your team.
OpenAI (ChatGPT)
OpenAI (ChatGPT)
OpenAI is an AI research and deployment company with the mission to ensure that artificial general intelligence benefits all of humanity. They are the makers of popular models like ChatGPT, DALL-E, and Whisper.
Anthropic (Claude)
Anthropic (Claude)
AI research and products that put safety at the frontier. Introducing Claude, a next-generation AI assistant for your tasks, no matter the scale.
Google Sheets
Google Sheets
Use Google Sheets to create and edit online spreadsheets. Get insights together with secure sharing in real-time and from any device.
Telegram
Telegram
Telegram, is a cloud-based, cross-platform, encrypted instant messaging (IM) service.
Google Drive
Google Drive
Google Drive is a file storage and synchronization service which allows you to create and share your work online, and access your documents from anywhere.
HTTP / Webhook
HTTP / Webhook
Get a unique URL where you can send HTTP or webhook requests
Google Calendar
Google Calendar
With Google Calendar, you can quickly schedule meetings and events and get reminders about upcoming activities, so you always know what’s next.
Schedule
Schedule
Trigger workflows on an interval or cron schedule.
Pipedream Utils
Pipedream Utils
Utility functions to use within your Pipedream workflows
Shopify
Shopify
Shopify is a complete commerce platform that lets anyone start, manage, and grow a business. You can use Shopify to build an online store, manage sales, market to customers, and accept payments in digital and physical locations.
Supabase
Supabase
Supabase is an open source Firebase alternative.
MySQL
MySQL
MySQL is an open-source relational database management system.
PostgreSQL
PostgreSQL
PostgreSQL is a free and open-source relational database management system emphasizing extensibility and SQL compliance.
AWS
AWS
Premium
Amazon Web Services (AWS) offers reliable, scalable, and inexpensive cloud computing services.
Twilio SendGrid
Twilio SendGrid
Premium
Send marketing and transactional email through the Twilio SendGrid platform with the Email API, proprietary mail transfer agent, and infrastructure for scalable delivery.
Amazon SES
Amazon SES
Amazon SES is a cloud-based email service provider that can integrate into any application for high volume email automation
Klaviyo
Klaviyo
Premium
Klaviyo unifies your data, channels, and AI agents in one platform—text, WhatsApp, email marketing, and more—driving growth with every interaction.
Zendesk
Zendesk
Premium
Zendesk is award-winning customer service software trusted by 200K+ customers. Make customers happy via text, mobile, phone, email, live chat, social media.
ServiceNow
ServiceNow
Premium
Beta
The smarter way to workflow
Slack
Slack
Slack is the AI-powered platform for work bringing all of your conversations, apps, and customers together in one place. Around the world, Slack is helping businesses of all sizes grow and send productivity through the roof.
Microsoft Teams
Microsoft Teams
Microsoft Teams has communities, events, chats, channels, meetings, storage, tasks, and calendars in one place.