What do you want to automate

with PortaBilling and Mailrelay?

Prompt, edit and deploy AI agents that connect to PortaBilling, Mailrelay and 2,500+ other apps in seconds.

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Integrate the PortaBilling API with the Mailrelay API
Setup the PortaBilling API trigger to run a workflow which integrates with the Mailrelay API. Pipedream's integration platform allows you to integrate PortaBilling and Mailrelay remarkably fast. Free for developers.

Connect PortaBilling

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: {
    portabilling: {
      type: "app",
      app: "portabilling",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      method: "post",
      url: `${this.portabilling.$auth.api_url}/rest/Env/get_env_info`,
      headers: {
        Authorization: `Bearer ${this.portabilling.$auth.oauth_access_token}`,
      },
    })
  },
})

Connect Mailrelay

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    mailrelay: {
      type: "app",
      app: "mailrelay",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `${this.mailrelay.$auth.domain}/api/v1/package`,
      headers: {
        "x-auth-token": `${this.mailrelay.$auth.api_key}`,
      },
    })
  },
})

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo