Tableau
API actions for the Tableau integration.
Tableau
Explore your Tableau projects and workbooks, and refresh data extracts.
List projects
List the projects available in your Tableau site.
Response
{
"projects": [
{}
]
}List views for a workbook
List the views inside a specific Tableau workbook.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
workbook_id | string | Yes | The ID of the Tableau workbook whose views you want to list. |
Response
{
"views": [
{}
]
}List workbooks
List the workbooks available in your Tableau site.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
owner_name | string | No | Show only workbooks owned by this Tableau user. |
Response
{
"workbooks": [
{}
]
}Refresh a data extract
Start refreshing the extract for a Tableau data source.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
datasource_id | string | Yes | The ID of the Tableau data source to refresh. |
Response
{
"job": {
"id": "mock_value",
"startedAt": "mock_value",
"status": "mock_value"
}
}