The Sales Engagement Platform that can help you send personalized emails and automated follow-ups at scale.
Go to siteimport { axios } from "@pipedream/platform"
export default defineComponent({
props: {
klenty: {
type: "app",
app: "klenty",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.klenty.com/apis/v1/user/${this.klenty.$auth.username}/lists`,
headers: {
"x-API-key": `${this.klenty.$auth.api_key}`,
},
params: {
listName: `YOUR_LIST_NAME`,
},
})
},
})
Klenty uses API keys for authentication. When you connect your Klenty account, Pipedream securely stores the keys so you can easily authenticate to Klenty APIs in both code and no-code steps.
To get your API Key go to Settings > Integrations > Klenty API Key.
For username, use your email address used to log into Klenty.