FunnelCockpit is an all-in-one platform for online marketing. It offers all the necessary functions and tools to build your own online business.
Go to siteimport { axios } from "@pipedream/platform"
export default defineComponent({
props: {
funnelcockpit: {
type: "app",
app: "funnelcockpit",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.funnelcockpit.com/me`,
headers: {
"Authorization": `${this.funnelcockpit.$auth.api_key}`,
},
})
},
})
FunnelCockpit uses API keys for authentication. When you connect your FunnelCockpit account, Pipedream securely stores the keys so you can easily authenticate to FunnelCockpit APIs in both code and no-code steps.
Sign in and copy your API Key from the API Settings.