Tableau URI format
URI definition for Tableau follows this standard:
Identifier fragments:
- Namespace:
tableau://{host}:{port}/{site}
ORtableau://{host}/{site}
- Scheme =
tableau
- Authority =
{host}:{port}/{site}
OR{host}/{site}
- Scheme =
- Unique name:
{dashboardId}
URI format:
- Tableau Cloud instance:
tableau://{host}/{site}/{dashboardId}
- Tableau self-hosted instance:
tableau://{host}:{port}/{site}/{dashboardId}
In case your dashboard is located in the Default
site of your Tableau instance, you should simply skip the site
information in the URI. Your URI will consequently have the following format:
- Tableau Cloud instance:
tableau://{host}/{dashboardId}
- Tableau self-hosted instance:
tableau://{host}:{port}/{dashboardId}
Parameters limitations:
host
identifier must start with a lowercase letter and include only lowercase letters, numbers, dash and dot (regex:[a-z][a-z0-9-.]+
)port
identifier must include only numberssite
identifier must include only lowercase and uppercase letters, numbers, dash and underscore (regex:[a-zA-Z0-9-_]+
)dashboardId
must be of UUID format, meaning lowercase letters from a to f, numbers and dash.
Examples:
tableau://sifflet.cloud.tableau.com/Dev/5e7570e3-bfe9-43b6-8011-1418bd77d45e
tableau://tableau.self-hosted.sifflet.com:8080/aaaa/35223729-b920-47b1-8670-a4e6975973b6
Updated 4 months ago