Robly API is an email marketing platform that allows for powerful customization and automation for email campaigns. Using the Robly API, developers can create sophisticated campaigns to send both email newsletters and automated emails triggered by the rules set by the user. Here are some examples of what you can build with the Robly API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
robly: {
type: "app",
app: "robly",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.robly.com/api/v1/contacts`,
params: {
api_key: `${this.robly.$auth.api_key}`,
api_id: `${this.robly.$auth.api_id}`,
},
})
},
})
robly uses API keys for authentication. When you connect your robly account, Pipedream securely stores the keys so you can easily authenticate to robly APIs in both code and no-code steps.
You can find your API ID and API Key under the My Account section of your Robly account.