What do you want to automate

with Quriiri and Prisma Postgres?

Prompt, edit and deploy AI agents that connect to Quriiri, Prisma Postgres 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
Send Message with the Quriiri API

Sends an SMS message using the Quriiri API. See the documentation

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

Connect Quriiri

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    quriiri: {
      type: "app",
      app: "quriiri",
    }
  },
  async run({steps, $}) {
    const data = {
      "integration_name": `${this.quriiri.$auth.integration_name}`,
    }
    return await axios($, {
      method: "post",
      url: `${this.quriiri.$auth.api_url}/authorize`,
      headers: {
        Authorization: `Bearer ${this.quriiri.$auth.api_key}`,
        "accept": `application/json`,
      },
      data,
    })
  },
})

Connect Prisma Postgres

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: {
    prisma_management_api: {
      type: "app",
      app: "prisma_management_api",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.prisma.io/v1/workspaces`,
      headers: {
        Authorization: `Bearer ${this.prisma_management_api.$auth.api_token}`,
        "accept": `application/json`,
      },
      params: {
        limit: `100`,
      },
    })
  },
})

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