Supernotes is your new home for ideas, records, tasks, and lists. Enjoy efficient note-taking without the hassle.
Go to siteimport { axios } from "@pipedream/platform"
export default defineComponent({
props: {
supernotes: {
type: "app",
app: "supernotes",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.supernotes.app/v1/profiles/`,
headers: {
"Api-Key": `${this.supernotes.$auth.api_key}`,
},
})
},
})
Create a single card with the minimum amount of data required. See docs here.
Supernotes uses API keys for authentication. When you connect your Supernotes account, Pipedream securely stores the keys so you can easily authenticate to Supernotes APIs in both code and no-code steps.
To connect Pipedream to your Supernotes account,
Refer to the Supernotes documentation for more info.