robly

Email Marketing Software

Go to site

robly API Integrations

Build and run workflows using the robly API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

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:

  • Customizable email campaigns and templates
  • Automated emails that can be triggered by user events
  • Detailed reports on email campaign performance
  • A/B testing features to optimize campaigns
  • Send transactional emails
  • Schedule emails for welcome series
  • Dynamically customize email content
  • Personalize messages with user data
  • Automatically segment campaigns
  • Create custom rules to trigger automated emails
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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}`,
      },
    })
  },
})

Authentication

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.