What do you want to automate

with Close and Neon Postgres?

Prompt, edit and deploy AI agents that connect to Close, Neon 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
Create Lead with Close API on New Column from Neon Postgres API
Neon Postgres + Close
 
Try it
Create Lead with Close API on New or Updated Row from Neon Postgres API
Neon Postgres + Close
 
Try it
Create Lead with Close API on New Row Custom Query from Neon Postgres API
Neon Postgres + Close
 
Try it
Create Lead with Close API on New Row from Neon Postgres API
Neon Postgres + Close
 
Try it
Create Lead with Close API on New Table from Neon Postgres API
Neon Postgres + Close
 
Try it
New Custom Event from the Close API

Emit new event when the configured types of events are triggered. See all possibilities

 
Try it
New Lead from the Close API

Emit new event when a new Lead is created

 
Try it
New Lead Status Change from the Close API

Emit new event when a Lead's status is changed

 
Try it
New Opportunity from the Close API

Emit new event when a new Opportunity is created

 
Try it
New Column from the Neon Postgres API

Emit new event when a new column is added to a table. See the documentation

 
Try it
Create Lead with the Close API

Creates a lead. See the documentation

 
Try it
Delete Row(s) with the Neon Postgres API

Deletes a row or rows from a table. See the documentation

 
Try it
Custom Action with the Close API

Makes an arbitrary call to the Close API. See the documentation for all options.

 
Try it
Execute SQL Query with the Neon Postgres API

Execute a custom PostgreSQL query. See our docs to learn more about working with SQL in Pipedream.

 
Try it
Find Row with the Neon Postgres API

Finds a row in a table via a lookup column. See the documentation

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

Overview of Close

The Close API provides access to a robust CRM platform, enabling users to automate sales processes, manage leads, and track communication history. Harnessing the Close API within Pipedream's ecosystem allows for the creation of custom, serverless workflows that can react in real-time to events, synchronize data across apps, and streamline sales operations. By leveraging Pipedream's capabilities, you can trigger actions based on Close events, manipulate Close data, and integrate with countless other services to amplify your CRM's functionality.

Connect Close

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

Connect Neon Postgres

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { axios } from "@pipedream/platform";
import { neon } from "@neondatabase/serverless";

export default defineComponent({
  props: {
    neon_postgres: {
      type: "app",
      app: "neon_postgres",
    }
  },
  async run({ steps, $ }) {

    const { host, port, user, password, database } = this.neon_postgres.$auth
    const connectionString = `postgresql://${user}:${password}@${host}:${port}/${database}`  
    
    const sql = neon(connectionString)
    const result = await sql`SELECT version()`
    const { version } = result[0]
    return version

  },
})

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