Trigger workflows on an interval or cron schedule.
Trigger your workflow on one or more days each month at a specific time (with timezone support).
Trigger your workflow on one or more days each week at a specific time (with timezone support).
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.
The Happy Scribe API provides tools for converting speech to text and vice versa, enabling developers to automate the transcription and subtitling of audio and video files. With the Happy Scribe integration on Pipedream, you can create workflows that trigger on various events, process content, and connect to other apps. Automate transcription jobs, sync transcripts to databases, notify teams when transcriptions are ready, or even analyze text for insights.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
happy_scribe: {
type: "app",
app: "happy_scribe",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.happyscribe.com/api/v1/transcriptions`,
headers: {
Authorization: `Bearer ${this.happy_scribe.$auth.api_key}`,
},
})
},
})