The go-to assistant for your work chat. DailyBot has built-in skills to help you run async meetings, track and celebrate milestones, and automate routines. 🤖💬
Emit new event when a user from your organization completes a response to a check-in in DailyBot.
Emit new event when a response is added to a form in DailyBot by any user from your organization or an external user.
Emit new event every time any kudos are given to someone in your DailyBot organization.
Emit new event each time a record is added, updated, or deleted in an Airtable table. See the documentation
Sends kudos to selected user(s) using DailyBot. See the documentation
Create one or more records in a table by passing an array of objects containing field names and values as key/value pairs. See the documentation
The DailyBot API on Pipedream opens up a world of possibilities for automating team interactions and enhancing productivity. With DailyBot, you can create custom workflows to automate stand-ups, collect feedback, run polls, and send reminders. By leveraging Pipedream's seamless connections with other apps and services, you can integrate DailyBot into your existing tools and streamline your team's communication processes without writing extensive code.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
dailybot: {
type: "app",
app: "dailybot",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.dailybot.com/v1/me/`,
headers: {
"Accept": `application/json`,
"X-API-KEY": `${this.dailybot.$auth.api_key}`,
},
})
},
})
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}`,
},
})
},
})