with InsertChat and Rise?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
insertchat: {
type: "app",
app: "insertchat",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.insertchat.com/v1/${this.insertchat.$auth.app_uid}/accounts`,
headers: {
Authorization: `Bearer ${this.insertchat.$auth.oauth_access_token}`,
},
})
},
})
The Rise API empowers users to automate and integrate their learning management system workflows with ease. With this API, you can manipulate course data, track user progress, and manage enrollments without manual intervention. Imagine the possibilities when you connect Rise to your HR system, Customer Support platform, or Content Management System. Streamline onboarding, keep tabs on employee training, and ensure compliance requirements are met seamlessly.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
rise: {
type: "app",
app: "rise",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.rise.com/users`,
headers: {
Authorization: `Bearer ${this.rise.$auth.api_key}`,
},
})
},
})