with Notion (API Key) and Hotjar?
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`,
},
})
},
})
The Hotjar API lets you tap into real-time feedback and user behavior analytics. With Pipedream, you can automate workflows using this data to enhance user experience, respond to feedback quickly, and integrate user insights into your broader ecosystem of tools. By crafting custom functions or responding to webhooks in Pipedream, you can connect Hotjar with other services to create seamless, data-driven processes.