Your company knowledge base, on autopilot
Creates a new document within a chosen parent document or private channel. See the documentation
Allows you to add one or more email addresses to the global suppressions group. See the docs here
Fetches a certain number of sub-documents related to a parent document in Slite. See the documentation
Slite's API enables you to automate interactions with the Slite note-taking and collaboration platform within Pipedream. By tapping into the Slite API, you can create, update, and search notes and channels, or automate content synchronization and alerts. Integrating Slite with Pipedream can streamline team communication, content management, and ensure key information is shared and acted upon promptly.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
slite: {
type: "app",
app: "slite",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.slite.com/v1/ask`,
headers: {
"accept": `application/json`,
"x-slite-api-key": `${this.slite.$auth.api_key}`,
},
params: {
question: `What are the names of my existing docs?`,
},
})
},
})
The Twilio SendGrid API opens up a world of possibilities for email automation, enabling you to send emails efficiently and track their performance. With this API, you can programmatically create and send personalized email campaigns, manage contacts, and parse inbound emails for data extraction. When you harness the power of Pipedream, you can connect SendGrid to hundreds of other apps to automate workflows, such as triggering email notifications based on specific actions, syncing email stats with your analytics, or handling incoming emails to create tasks or tickets.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
sendgrid: {
type: "app",
app: "sendgrid",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.sendgrid.com/v3/user/account`,
headers: {
Authorization: `Bearer ${this.sendgrid.$auth.api_key}`,
},
})
},
})