Tableau is a visual analytics platform transforming the way we use data to solve problems—empowering people and organizations to make the most of their data.
Emit new event when a new message is posted to one or more channels
Emit new event when a label is created in Tableau. See the documentation
Emit new event each time a new workbook is created in Tableau. See the documentation
Emit new event when a message was posted in a direct message channel
Creates a project on the specified site. You can also create project hierarchies by creating a project under the specified parent project on the site. See the documentation
Send a message to a public or private channel. See the documentation
Configure custom blocks and send to a channel, group, or user. See the documentation.
Returns a list of projects on the specified site. See the documentation
Send a message as a threaded reply. See postMessage or scheduleMessage docs here
The Tableau API allows you to tap into the robust data visualization and business intelligence capabilities of Tableau. Within Pipedream, you can leverage this API to automate reporting, manage users, update data sources, and extract insights. This enables you to integrate Tableau's analytics with other services, streamlining your data workflows and ensuring your dashboards remain up-to-date with minimal manual effort.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
tableau: {
type: "app",
app: "tableau",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.tableau.$auth.domain}/api/3.21/sessions/current`,
headers: {
"X-Tableau-Auth": `${this.tableau.$auth.oauth_access_token}`,
"Accept": `application/json`,
},
})
},
})
The Pipedream Slack app enables you to build event-driven workflows that interact with the Slack API. Once you authorize the Pipedream app's access to your workspace, you can use Pipedream workflows to perform common Slack actions or write your own code against the Slack API.
The Pipedream Slack app is not a typical app. You don't interact with it directly as a bot, and it doesn't add custom functionality to your workspace out of the box. It makes it easier to automate anything you'd typically use the Slack API for, using Pipedream workflows.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
slack: {
type: "app",
app: "slack",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://slack.com/api/users.profile.get`,
headers: {
Authorization: `Bearer ${this.slack.$auth.oauth_access_token}`,
},
})
},
})