What do you want to automate

with Botmaker and Predis.ai?

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

Connect Botmaker

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: {
    botmaker: {
      type: "app",
      app: "botmaker",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.botmaker.com/v2.0/messages`,
      headers: {
        "access-token": `${this.botmaker.$auth.access_token}`,
      },
    })
  },
})

Connect Predis.ai

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    predis_ai: {
      type: "app",
      app: "predis_ai",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://brain.predis.ai/predis_api/v1/get_posts/`,
      headers: {
        "authorization": `${this.predis_ai.$auth.api_key}`,
      },
      params: {
        brand_id: `${this.predis_ai.$auth.brand_id}`,
      },
    })
  },
})

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