With the Moosend API, you can build a variety of applications and integrations to help you manage your email marketing campaigns. Here are some examples of what you can build:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
moosend: {
type: "app",
app: "moosend",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.moosend.com/v3/lists.json`,
params: {
apikey: `${this.moosend.$auth.api_key}`,
},
})
},
})
Adds a new subscriber to the specified mailing list. If there is already a subscriber with the specified email address in the list, an update will be performed instead. The rate limit for this request is 10 requests per 10 seconds (*per API key). See the docs for more info.
Moosend uses API keys for authentication. When you connect your Moosend account, Pipedream securely stores the keys so you can easily authenticate to Moosend APIs in both code and no-code steps.
You can get your API key from the settings page in your account.