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}`,
},
})
},
})
Emit new event when a call recording has finished.
Emit new event when an incoming call is completed, including calls not picked up or voicemails left.
Emit new event when an outgoing call has ended.
Send a text message from your OpenPhone number to a recipient. See the documentation
OpenPhone uses API keys for authentication. When you connect your OpenPhone account, Pipedream securely stores the keys so you can easily authenticate to OpenPhone APIs in both code and no-code steps.