Unisender offers a powerful API with a wide range of useful features and possibilities. It enables developers to create powerful applications that take advantage of the Unisender platform. With the Unisender API, you can easily develop applications to interact with Unisender and perform tasks such as:
These are just some of the possibilities the Unisender API gives you. With it, you can build powerful applications with features suited to your specific needs and business requirements. Below are some examples of applications that can be built with Unisender API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
unisender: {
type: "app",
app: "unisender",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.unisender.com/en/api/getUserInfo`,
params: {
format: `json`,
api_key: `${this.unisender.$auth.api_key}`,
},
})
},
})
Emit new event when all messages have been sent and analysis of the results is completed.
Emit new event when a new campaign is scheduled to be launched.
Emit new event when a email unsubscribes from a list.
This method adds contacts (email address and/or mobile phone numbers) of the contact to one or several lists, and also allows you to add/change values of additional fields and tags. See the docs here
This method unsubscribes the contact email or phone number from one or several lists. See the docs here
Unisender uses API keys for authentication. When you connect your Unisender account, Pipedream securely stores the keys so you can easily authenticate to Unisender APIs in both code and no-code steps.
Access your API key in the "Integration and API" section of your Unisender account.