with Morgen and Notion (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}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
notion_api_key: {
type: "app",
app: "notion_api_key",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.notion.com/v1/users/me`,
headers: {
Authorization: `Bearer ${this.notion_api_key.$auth.api_secret}`,
"Notion-Version": `2021-08-16`,
},
})
},
})