Plan for Trade Shows and Exhibits. Collaborate with your event team to get things done.
Emit new event when a task is assigned to a user in ExhibitDay.
Emit new event when a task is marked as complete in ExhibitDay
Emit new event each time a record is added, updated, or deleted in an Airtable table. See the documentation
The ExhibitDay API allows you to interact with ExhibitDay's event planning and trade show management features programmatically. Using this API within Pipedream, you can automate tasks like synchronizing event data, managing trade show inventory, and tracking your team's performance at events. By leveraging Pipedream's connectivity, you can trigger workflows based on new events, updates, or specific conditions that you define, streamlining your event management process.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
exhibitday: {
type: "app",
app: "exhibitday",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.exhibitday.com/v1/events`,
headers: {
"api_key": `${this.exhibitday.$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}`,
},
})
},
})