Clear & Organized Team Communication
Emit new event for any new channel added in a workspace See the docs here
Emit new event for any new comment in a workspace See the docs here
Emit new event for any new updates in a workspace See the docs here
Emit new event for any new group added in a workspace See the docs here
Emit new event for any new user added to a workspace group See the docs here
Twist is a communication app designed for team collaboration, with a focus on organized, threaded conversations. Using the Twist API on Pipedream, you can automate workflows to enhance productivity, streamline communication, and integrate with other tools. From automating notifications to syncing tasks across platforms, the API unlocks valuable use cases for teams needing to stay in sync without the noise of email or less structured chat apps.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
twist: {
type: "app",
app: "twist",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.twist.com/api/v3/users/get_session_user`,
headers: {
Authorization: `Bearer ${this.twist.$auth.oauth_access_token}`,
},
})
},
})
Airtable (OAuth) API on Pipedream allows you to manipulate and leverage your Airtable data in a myriad of powerful ways. Sync data between Airtable and other apps, trigger workflows on updates, or process bulk data operations asynchronously. By using Airtable's structured databases with Pipedream's serverless platform, you can craft custom automation solutions, integrate with other services seamlessly, and streamline complex data processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
airtable_oauth: {
type: "app",
app: "airtable_oauth",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.airtable.com/v0/meta/whoami`,
headers: {
Authorization: `Bearer ${this.airtable_oauth.$auth.oauth_access_token}`,
},
})
},
})