with Housecall Pro and RingCentral?
Gets a recording and downloads it to the /tmp directory. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
housecall_pro: {
type: "app",
app: "housecall_pro",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.housecallpro.com/company`,
headers: {
"accept": `application/json`,
"authorization": `Token ${this.housecall_pro.$auth.api_key}`,
},
})
},
})
RingCentral is a comprehensive cloud communication platform that melds messaging, video, and phone services. Integrating RingCentral with Pipedream allows for automated workflows involving SMS sending, call management, and leveraging communication logs for data-driven insights. With Pipedream's serverless execution model, you can trigger actions based on specific RingCentral events or schedule tasks to run at predetermined intervals, all without writing extensive code.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
ringcentral: {
type: "app",
app: "ringcentral",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.ringcentral.$auth.instancetype}.ringcentral.com/restapi/v1.0/account/~`,
headers: {
Authorization: `Bearer ${this.ringcentral.$auth.oauth_access_token}`,
},
})
},
})