All the email marketing and delivery tools you need to communicate with your customers. Most attractive monthly pricing and pay-as-you-go option on the market.
Go to siteimport { axios } from "@pipedream/platform"
export default defineComponent({
props: {
elastic_email: {
type: "app",
app: "elastic_email",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.elasticemail.com/v2/account/profileoverview`,
headers: {
"X-ElasticEmail-ApiKey": `${this.elastic_email.$auth.api_key}`,
},
})
},
})
Elastic Email uses API keys for authentication. When you connect your Elastic Email account, Pipedream securely stores the keys so you can easily authenticate to Elastic Email APIs in both code and no-code steps.
You can get your API Key in the Manage API Key page.