Lodol Docs

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

ParameterTypeRequiredDescription
workbook_idstringYesThe ID of the Tableau workbook whose views you want to list.

Response

{
  "views": [
    {}
  ]
}

List workbooks

List the workbooks available in your Tableau site.

Parameters

ParameterTypeRequiredDescription
owner_namestringNoShow only workbooks owned by this Tableau user.

Response

{
  "workbooks": [
    {}
  ]
}

Refresh a data extract

Start refreshing the extract for a Tableau data source.

Parameters

ParameterTypeRequiredDescription
datasource_idstringYesThe ID of the Tableau data source to refresh.

Response

{
  "job": {
    "id": "mock_value",
    "startedAt": "mock_value",
    "status": "mock_value"
  }
}

On this page