with Wuf and RingCentral?
Gets a recording and downloads it to the /tmp directory. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
wuf: {
type: "app",
app: "wuf",
}
},
async run({steps, $}) {
const data = {
"apiKey": `${this.wuf.$auth.api_key}`,
"userKey": `${this.wuf.$auth.user_key}`,
"title": `New report`,
"body": `Read the latest news.`,
"url": `https://mysite.com/report-2023`,
}
return await axios($, {
method: "post",
url: `https://api.usewuf.com/v1/push`,
data,
})
},
})
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}`,
},
})
},
})