What do you want to automate

with Guru and Microsoft SQL Server?

Prompt, edit and deploy AI agents that connect to Guru, Microsoft SQL Server 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
Add Tag to Card with Guru API on New Column from Microsoft SQL Server API
Microsoft SQL Server + Guru
 
Try it
Add Tag to Card with Guru API on New Or Updated Row from Microsoft SQL Server API
Microsoft SQL Server + Guru
 
Try it
Create Card with Guru API on New Column from Microsoft SQL Server API
Microsoft SQL Server + Guru
 
Try it
Create Card with Guru API on New Or Updated Row from Microsoft SQL Server API
Microsoft SQL Server + Guru
 
Try it
Execute Query with Microsoft SQL Server API on Card Updated (Instant) from Guru API
Guru + Microsoft SQL Server
 
Try it
Card Updated (Instant) from the Guru API

Emit new event when a user makes an edit to a card. See the documentation

 
Try it
New Column from the Microsoft SQL Server API

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

 
Try it
New Announcement Read (Instant) from the Guru API

Emit new event when a user clicks on the "I read it" button in an Announcement. See the documentation

 
Try it
New Or Updated Row from the Microsoft SQL Server API

Triggers when a new row is added or an existing row is updated. See the documentation

 
Try it
New Card Created (Instant) from the Guru API

Emit new event when a new card is published. See the documentation

 
Try it
Add Tag to Card with the Guru API

Links an existing tag to a specified card in Guru. See the documentation

 
Try it
Execute Query with the Microsoft SQL Server API

Executes a SQL query and returns the results. See the documentation

 
Try it
Execute SQL Query with the Microsoft SQL Server API

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

 
Try it
Create Card with the Guru API

Creates a new card on your Guru account. See the documentation

 
Try it
Insert Row with the Microsoft SQL Server API

Inserts a new row in a table. See the documentation

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

Overview of Guru

The Guru API on Pipedream enables the automation of knowledge sharing and management tasks within your team or organization. Using this API, you can programmatically interact with Guru's knowledge base, including retrieving card details, creating new cards, and updating existing content. By leveraging Pipedream's serverless platform, you can craft workflows that trigger based on events from other services, process the data, and perform actions in Guru to keep your team's knowledge up to date and accessible.

Connect Guru

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

Overview of Microsoft SQL Server

With the Microsoft SQL Server API on Pipedream, you can automate your database operations and create powerful integrations. This API allows you to execute queries, manage databases, and trigger actions based on data changes. Implementing workflows that react to database events, manipulate data, or synchronize SQL Server data with other services, becomes effortless with Pipedream's serverless platform.

Connect Microsoft SQL Server

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import sql from "mssql"
export default defineComponent({
  props: {
    microsoft_sql_server: {
      type: "app",
      app: "microsoft_sql_server",
    }
  },
  async run({steps, $}) {
    const { host, username, password, port, database, encrypt,trustServerCertificate } = this.microsoft_sql_server.$auth
    const conn_str = `Server=${host},${port};Database=${database};User Id=${username};Password=${password};Encrypt=${encrypt};TrustServerCertificate=${trustServerCertificate}`;
    await sql.connect(conn_str);
    return await sql.query`SELECT GETDATE()`
  },
})

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