with Habitica and neetoCal?
The Habitica API lets you gamify your life by interacting programmatically with your habits, dailies, to-dos, and rewards on the Habitica platform. This API offers endpoints for creating, fetching, updating, and deleting tasks, as well as retrieving user information and stats. When paired with Pipedream's serverless platform, the Habitica API becomes even more powerful, enabling customized, automated workflows that can respond to events in other apps or scheduled triggers to enhance your productivity and maintain your focus.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
habitica: {
type: "app",
app: "habitica",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://habitica.com/api/v3/user`,
headers: {
"x-client": `3a326108-1895-4c23-874e-37668c75f2ad-Pipedream`,
"x-api-user": `${this.habitica.$auth.user_id}`,
"x-api-key": `${this.habitica.$auth.api_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
neetocal: {
type: "app",
app: "neetocal",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.neetocal.$auth.subdomain}.neetocal.com/api/external/v1/bookings`,
headers: {
"x-api-key": `${this.neetocal.$auth.api_key}`,
},
})
},
})