with Height and Morgen?
Searches for tasks within your workspace using a text query. See the documentation
Updates a specified task within your workspace. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
height: {
type: "app",
app: "height",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.height.app/users/me`,
headers: {
"Authorization": `api-key ${this.height.$auth.api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
morgen: {
type: "app",
app: "morgen",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.morgen.so/v3/calendars/list`,
headers: {
"authorization": `ApiKey ${this.morgen.$auth.api_key}`,
},
})
},
})