ActionTableauUpdated September 2026

How do I publish a workbook to Tableau Server?

Short answer: You can publish workbook in Tableau by hand from its own interface, but it won’t repeat itself. On TinyCommand, add the Tableau Publish Workbook action to a workflow, map its 4 inputs from any upstream app, and it runs automatically every time the trigger fires. No code, and a free tier to start.

Publish Workbook in Tableau — start free
Inputs

The fields this action accepts.

Every field can be mapped from an upstream trigger, AI step, table row, or hard-coded literal.

FieldTypeRequiredDescription
Workbook Name
workbook_name
stringRequiredName to register the workbook under
Project ID
project_id
stringRequiredLUID of the destination project
File URL
file_url
stringRequiredURL of the .twbx or .twb file to upload
Overwrite if Exists
overwrite
booleanOptionalReplace an existing workbook with the same name
Sample request
{
"workbook_name": "{{trigger.workbook_name}}",
"project_id": "{{trigger.project_id}}",
"file_url": "https://example.com/dashboard.twbx",
"overwrite": "{{trigger.overwrite}}"
}
Returns
{
"workbook": {
"id": "wb-new",
"name": "Q3 Sales",
"project": {
"id": "proj-1",
"name": "Default"
},
"contentUrl": "Q3Sales"
}
}

Use these fields in downstream nodes for routing, logging, or error handling.

Triggered by

Apps that pair well as the trigger for Publish Workbook.

Any of these apps can fire this action as part of a workflow.

FAQ

Questions about Publish Workbook.

What does the Publish Workbook action do in Tableau?
Uploads a .twb or .twbx workbook to a Tableau site under the chosen project. Useful for CI/CD pipelines that promote workbooks from dev to prod without manual upload.
What inputs does Publish Workbook require?
Required: Workbook Name, Project ID, File URL. Every input accepts a static value or a variable from any upstream node in your workflow.
Can I use dynamic inputs from earlier workflow nodes?
Yes. Any field on this action can pull values from upstream nodes, whether that's a form response, a trigger payload, an AI output, or a lookup result.
What happens if Tableau returns an error?
The run history shows the failed step with its input and the error message Tableau returned, so you can fix the input and run the workflow again. Automatic retries are built into HTTP steps only, where you can also set your own retry count and delay.
Does Publish Workbook support batch operations?
Run Publish Workbook inside a loop to process each item in an array. TinyCommand does not throttle calls for you, so for large arrays add a Delay step if you need to stay within Tableau's rate limits.
More actions

Other Tableau actions.

Publish Workbook in Tableau — start free