What do you want to automate

with HeyReach and Order Sender?

Prompt, edit and deploy AI agents that connect to HeyReach, Order Sender 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 HeyReach API with the Order Sender API
Setup the HeyReach API trigger to run a workflow which integrates with the Order Sender API. Pipedream's integration platform allows you to integrate HeyReach and Order Sender remarkably fast. Free for developers.

Connect HeyReach

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    heyreach: {
      type: "app",
      app: "heyreach",
    }
  },
  async run({steps, $}) {
    const data = {
      "offset": `0`,
      "keyword": `your_account_name`,
      "limit": `10`,
    }
    return await axios($, {
      method: "post",
      url: `https://api.heyreach.io/api/public/li_account/GetAll`,
      headers: {
        "x-api-key": `${this.heyreach.$auth.api_key}`,
      },
      data,
    })
  },
})

Connect Order Sender

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    order_sender: {
      type: "app",
      app: "order_sender",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://business.ordersender.com/api/v1/op/check`,
      headers: {
        "accept": `*/*`,
      },
      params: {
        cod: `${this.order_sender.$auth.company_code}`,
        token: `${this.order_sender.$auth.api_token}`,
      },
    })
  },
})

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