with Schedule and OpenPhone?
Trigger your workflow on one or more days each month at a specific time (with timezone support).
Emit new event when a call recording has finished.
Trigger your workflow on one or more days each week at a specific time (with timezone support).
Retrieve the list of phone numbers and users associated with your OpenPhone workspace. See the documentation
Send a text message from your OpenPhone number to a recipient. See the documentation
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.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
openphone: {
type: "app",
app: "openphone",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.openphone.com/v1/phone-numbers`,
headers: {
"Authorization": `${this.openphone.$auth.api_key}`,
},
})
},
})