What do you want to automate

with Pembee and Picqer?

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

Connect Pembee

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: {
    pembee: {
      type: "app",
      app: "pembee",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://webhooks.pembee.app/api/zapier/users`,
      headers: {
        Authorization: `Bearer ${this.pembee.$auth.api_key}`,
      },
      params: {
        account_name: `${this.pembee.$auth.account_name}`,
      },
    })
  },
})

Connect Picqer

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: {
    picqer: {
      type: "app",
      app: "picqer",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.picqer.$auth.subdomain}.picqer.com/api/v1/users`,
      auth: {
        username: `${this.picqer.$auth.api_key}`,
        password: ``,
      },
    })
  },
})

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