Highly scalable and reliable cloud based email delivery platform with the most disruptive pricing model ever. We deliver emails into inbox.
Go to siteimport { axios } from "@pipedream/platform"
export default defineComponent({
props: {
netcore: {
type: "app",
app: "netcore",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://emailapi.netcorecloud.net/v5.1/domain/getDomains`,
headers: {
"api_key": `${this.netcore.$auth.api_key}`,
},
params: {
status: `5`,
},
})
},
})
Netcore Cloud uses API keys for authentication. When you connect your Netcore Cloud account, Pipedream securely stores the keys so you can easily authenticate to Netcore Cloud APIs in both code and no-code steps.
You can get your API Key under Settings > Integration page > API tab.