What do you want to automate

with Gem and Consulta Única?

Prompt, edit and deploy AI agents that connect to Gem, Consulta Única 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
New Candidate Added from the Gem API

Emit new event when a candidate is added in Gem. See the documentation

 
Try it
Create Candidate with the Gem API

Creates a new candidate in Gem. See the documentation

 
Try it
Integrate the Gem API with the Consulta Única API
Setup the Gem API trigger to run a workflow which integrates with the Consulta Única API. Pipedream's integration platform allows you to integrate Gem and Consulta Única remarkably fast. Free for developers.

Connect Gem

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: {
    gem: {
      type: "app",
      app: "gem",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.gem.com/v0/users`,
      headers: {
        "x-api-key": `${this.gem.$auth.api_key}`,
        "content-type": `application/json`,
      },
    })
  },
})

Connect Consulta Única

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: {
    consulta_unica: {
      type: "app",
      app: "consulta_unica",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://consultaunica.mx/api/v2/user-stats`,
      headers: {
        "x-api-key": `${this.consulta_unica.$auth.api_key}`,
      },
      params: {
        userEmail: `${this.consulta_unica.$auth.email}`,
      },
    })
  },
})

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