with SimpleBackups and LearnWorlds?
SimpleBackups is a tool for automating the backup of databases and files to a cloud storage service. With its API, you can manage backups, retrieve backup information, and trigger backups programmatically. Using Pipedream, you can integrate SimpleBackups with a multitude of apps to create custom and powerful automated workflows. This can help streamline operations such as monitoring backup statuses, triggering backups based on specific events, and keeping teams informed about backup health.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
simplebackups: {
type: "app",
app: "simplebackups",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://my.simplebackups.io/api/team/current`,
headers: {
Authorization: `Bearer ${this.simplebackups.$auth.api_token}`,
"Accept": `application/json`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
learnworlds: {
type: "app",
app: "learnworlds",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.learnworlds.$auth.school_domain}/admin/api/v2/users`,
headers: {
Authorization: `Bearer ${this.learnworlds.$auth.oauth_access_token}`,
"Lw-Client": `${this.learnworlds.$auth.oauth_client_id}`,
},
})
},
})