import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
outgrow: {
type: "app",
app: "outgrow",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.outgrow.co/api/v1/get_cal/${this.outgrow.$auth.api_key}`,
})
},
})
Outgrow uses API keys for authentication. When you connect your Outgrow account, Pipedream securely stores the keys so you can easily authenticate to Outgrow APIs in both code and no-code steps.
You can create an API Key in Account Settings by clicking on your name (alias) on the top right hand side of the Outgrow Dashboard interface. Then, select Billing & Settings from the drop-down menu and look for the API Key option on the left sidebar.
For subdomain, if your URL is https://xyz.outgrow.co
then your subdomain is xyz
.