with LearnWorlds and DeepL?
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}`,
},
})
},
})
The DeepL API provides a powerful machine translation service, allowing you to translate text between languages with a high degree of accuracy and nuance. Leveraging the DeepL API on Pipedream, you can automate multilingual content creation, streamline communication in different languages, and enrich apps with instant translation features. The integration possibilities are vast, enabling you to weave translation capabilities into various workflows, data processing, and content management systems.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
deepl: {
type: "app",
app: "deepl",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api-free.deepl.com/v2/usage`,
headers: {
"Authorization": `DeepL-Auth-Key ${this.deepl.$auth.api_key}`,
},
})
},
})