Authentication Methods
Using the authentication methods of the Tableau REST API you can:
- Sign in a user to a Tableau Server or Tableau Cloud
- Authenticate with a Personal Access Token(Link opens in a new window) (PAT) for improved security with granular monitoring and revocation
- Authenticate with username and password for quick manual sign in for all users and user impersonation for administrators
- Authorize access using a Tableau connected app and a JSON Web Token (JWT)
- Impersonate a user if you are a Tableau Server administrator, using username and password or PAT
- Impersonate a user if you are a Tableau Server administrator or Tableau Cloud site admin using a connected app
- Sign out a user from a Tableau server
- Switch the from the current site you are signed into, to another on the server without authenticating again
This functionality relates to the UI elements and concepts described at: Sign in to Tableau Server or Online(Link opens in a new window).
The Tableau Server Client library(Link opens in a new window), a Python wrapper for the REST API, offers the following related items: Auth Methods(Link opens in a new window); and Sign In and Out(Link opens in a new window).
Revoke Administrator Personal Access Tokens
Revokes all personal access tokens(Link opens in a new window) (PATs) created by server administrators. This method is not available for Tableau Cloud.
URI
DELETE /api/api-version/auth/serverAdminAccessTokens
Parameter Values
api-version | The version of the API to use, such as 3.19 . For more information, see REST API and Resource Versions. |
Request Body
None
Permissions
Only Tableau Server users with server administrator permissions can use this method.
Response Code
204
Response Body
None
Version
Version 3.11 and later. For more information, see REST API and Resource Versions.
Errors
HTTP status | error Code |
Condition | Details |
---|---|---|---|
403 | 403004 | Revoke server admin tokens forbidden, | The user does not have the server administrator permissions required to call this method. |
404 | 404000 | Server not found | The Tableau Server in the URI doesn't correspond to an existing server. |
405 | 405000 | Invalid request method | Request type was not DELETE. |
For more information, see Handling Errors.
Sign In
Signs you in as a user on the specified site on Tableau Server or Tableau Cloud.
This call returns a credentials token that you use in subsequent calls to the server. Typically, a credentials token is valid for 240 minutes. With administrator permissions on Tableau Server, you can change this timeout by using the tsm configuration set(Link opens in a new window) command and setting the wgserver.session.idle_limit option.
Note: The token is valid for REST API calls and Tableau Metadata API (GraphQL) queries. You cannot use the token as authentication for other operations with Tableau Server. In addition, the token is good only for operations in the site that you're signed in to. You cannot sign in to one site and then use the token you get back to send requests to a different site. If you do, the server returns an HTTP 403 (Forbidden) error.
If you are a Tableau Server administrator, you can use your username and password to sign in and impersonate a specific user. You might do this in order to double check or troubleshoot the impact of permissions settings for that user.
For more information about authentication, see Signing In and Signing Out (Authentication).
Notes:
-
SAML single sign on(Link opens in a new window) (SSO) authentication does not validate REST API requests. For a scenario where you want to integrate Tableau authentication into a SSO environment you will need to incorporate a REST sign in request, and then use the credentials token from its response in the header of subsequent requests.
- (Tableau Cloud only) If multi-factor authentication (MFA) is enabled with Tableau authentication, PATs are required. You must use a PAT, instead of user name and password, to make a REST API sign in request to Tableau Cloud.
URI
POST /api/api-version/auth/signin
Note: For Tableau Cloud, the server address in the URI must contain the pod name, such as 10az, 10ay, or us-east-1.
For example, the URI to sign in to a site in the 10ay pod would be:
https://10ay.online.tableau.com/api/api-version/auth/signin
Parameter Values
api-version | The version of the API to use, such as 3.19 . For more information, see REST API and Resource Versions. |
Request Body
PAT
Signing in with a user's personal access token (PAT):
- For Tableau Server, see personal access token(Link opens in a new window).
- For Tableau Cloud, see personal access token(Link opens in a new window).
<tsRequest>
<credentials personalAccessTokenName="personal-access-token-name"
personalAccessTokenSecret="personal-access-token-secret" >
<site contentUrl="content-url" />
</credentials>
</tsRequest>
User name and password
Signing in with a user's user name and password:
<tsRequest>
<credentials name="username" password="password" >
<site contentUrl="content-url" />
</credentials>
</tsRequest>
Impersonating user using username and password
Signing in with server administrator's username and password to impersonate a user (not available for Tableau Cloud):
<tsRequest>
<credentials name="username" password="password" >
<site contentUrl="content-url" />
<user id="user-to-impersonate" />
</credentials>
</tsRequest>
Impersonating user using PAT
Signing in with server administrator's personal access token(Link opens in a new window) (PAT) to impersonate a user (not available for Tableau Cloud):
<tsRequest>
<credentials personalAccessTokenName="personal-access-token-name"
personalAccessTokenSecret="personal-access-token-secret" >
<site contentUrl="content-url" />
<user id="user-to-impersonate" />
</credentials>
</tsRequest>
JWT
Signing in with a JSON Web Token (JWT), from a connected app(Link opens in a new window) (Introduced in Tableau Cloud June 2022 (API 3.16); Tableau Server 2022.3 (API 3.17)):
<tsRequest>
<credentials jwt="json-web-token"
<site contentUrl="content-url" />
<user id="user-to-impersonate" />
</credentials>
</tsRequest>
When a JWT sign in is used, the JWT must be configured with the scopes of the REST API methods the connected app can access. You can find the scope for a JWT-supported method in a method's references details under the Access scope section. This section shows the scope declaration to use in the JWT that calls that method. You can also see a full list of JWT-supported scopes in REST API methods that support JWT authorization(Link opens in a new window) (Tableau Cloud Help) or REST API methods that support JWT authorization(Link opens in a new window) (Tableau Server Help).
If you encounter issues with signing in, the response body is appended with an additional error code that you can reference in Troubleshoot scopes(Link opens in a new window) (Tableau Cloud Help) or Troubleshoot scopes(Link opens in a new window) (Tableau Server Help). For example, in the following response body, you can reference “10084” to help troubleshoot issues with signing in to Tableau Cloud or Tableau Server using a JWT for REST API authorization.
<error code="401001"> "summary": "Signin Error", "detail": "Error signing in to Tableau Cloud (10084)" </error>
Attribute Values
personal-access-token-name |
The name of the personal access token when signing in with a personal access token. The token name is available on a user’s account page on Tableau server or online. |
personal-access-token-secret |
The secret value of the personal access token when signing in with a personal access token. The value of the token secret is available only in the dialog that appears when a user creates a personal access token(Link opens in a new window). |
username |
The name of the user when signing in with username and password. The name and password in the <credentials> element can represent any user
in the specified site. If the user is not an administrator, they might have limited permissions to perform subsequent operations.
Note: If the server is configured to use Active Directory authentication, and if the user name is not unique across domains, you must include the domain as part of the user name (for example, domain_name\Adam). |
password | The password when signing in with username and password. |
json-web-token |
A JSON Web Token (JWT), uses a shared secret provided by the Tableau connected app(Link opens in a new window) and signed by your external application. Depending on the method used to create the connected app, a JWT can be generated by the connected app as part of the external app's call to sign in to Tableau. The JWT must include access scopes(Link opens in a new window) that determine which REST methods the external app can call. |
content-url |
The permanent name of the site to sign in to. The content URL appears in the URL path of Tableau content in your browser address bar after the Tableau Server URL.
For Tableau Server, to specify the default site, omit
For Tableau Cloud, a sign-in request must have a |
user-to-impersonate | The LUID of a user to sign in as. For impersonation when a system administrator signs in with user name and password. |
Permissions
Any Tableau user can sign in through the REST API. A user that does not have administrator permissions will have limited permissions to perform subsequent operations. Only server administrators can sign in with username and password in order to impersonate other Tableau Server users.
Response Code
200
Response Body
<tsResponse>
<credentials token="authentication-token"
estimatedTimeToExpiration="time-to-expiration" >
<site id="site-id" contentUrl="content-url" />
<user id="user-id-of-signed-in-user"
</credentials>
</tsResponse>
An estimatedTimeToExpiration
value is returned when you sign in using a PAT. The value represents the approximate time
until the token returned from the PAT sign in will expire and need to be refreshed. The estimated time is based on regular usage of the
token for authenticating calls, but actual time may be shorter if the token is unused for an extended length of time.
Version
Version 1.0 and later. For more information, see REST API and Resource Versions.
Errors
HTTP status | error Code |
Condition | Details |
---|---|---|---|
400 | 400000 | Bad request | The content of the request body is missing or incomplete, or contains both username/password and a personal access token, or contains malformed XML. |
401 | 401001 | Login error | The credentials (name or password, or personal access token name or secret) are invalid for the specified site, or the site contentURL is invalid. |
401 | 401001 | Login error | Login is blocked because several requests with invalid credentials were made. |
401 | 401001 | Login error | The Administrator requires the user to update their password. |
401 | 401001 | Login error | The password has expired. |
401 | 401009 | Login error | The request body is missing or empty. |
405 | 405000 | Invalid request method | Request type was not POST.
If you are signing in to a Tableau Cloud site, this error may be caused by leaving the pod name out of the server address in the URI. The error can also be caused by attempting to make a request to a SSL-protected server using HTTP, rather than HTTPS. |
For more information, see Handling Errors.
Example
curl "https://MY-SERVER/api/3.19/auth/signin" -X POST -d @signin.xml
Content of signin.xml:
<tsRequest>
<credentials personalAccessTokenName="MY_PAT_NAME"
personalAccessTokenSecret="vFel4qtGTZ2+Po0ZWT7YWg==:nMmSHnQ5kJBP17ZtsBgPtuVWdYJFAbBG" >
<site contentUrl="MarketingSite" />
</credentials>
</tsRequest>
Example response:
<tsResponse version-and-namespace-settings>
<credentials token="HvZMqFFfQQmOM4L-AZNIQA|5fI6T54OPK1Gn1p4w0RtHv6EkojWRTwq|a946d998-2ead-4894-bb50-1054a91dcab3">
<site id="9a8b7c6d-5e4f-3a2b-1c0d-9e8f7a6b5c4d"
contentUrl="MarketingSite"/>
</credentials>
</tsResponse>
Sign Out
Signs you out of the current session. This call invalidates the authentication token that is created by a call to Sign In.
URI
POST /api/api-version/auth/signout
Parameter Values
api-version | The version of the API to use, such as 3.19 . For more information, see REST API and Resource Versions. |
Request Body
None
Permissions
Any user can call this method.
Response Code
204
Response Body
None
Version
Version 1.0 and later. For more information, see REST API and Resource Versions.
Errors
HTTP status | error Code |
Condition | Details |
---|---|---|---|
405 | 405000 | Invalid request method | Request type was not POST. |
For more information, see Handling Errors.
Example
curl "http://MY-SERVER/api/3.19/auth/signout" -X POST -H "X-Tableau-Auth:12ab34cd56ef78ab90cd12ef34ab56cd"
Switch Site
Switches you onto another site without having to provide a user name and password again.
This method allows an authenticated user to switch sites that they have access to. When you call this method, you must provide the current authorization token as the value of the X-Tableau-Auth header.
Using the current authentication token, the method signs you in as a user on the site specified in the request payload. The method returns a new authentication token and invalidates the old one.
You have the permissions of the user associated with the authorization token. By default, the token is good for 240 minutes. (You can specify a different timeout value for the token by calling the tsm configuration set
command to change the wgserver.session.idle_limit setting.)
Note This method is not available on Tableau Cloud.
URI
POST /api/api-version/auth/switchSite
Parameter Values
api-version | The version of the API to use, such as 3.19 . For more information, see REST API and Resource Versions. |
Request Body
<tsRequest>
<site contentUrl="content-url" />
</tsRequest>
Attribute Values
content-url |
The permanent name of the site to sign in to. The content URL appears in the URL path of Tableau content in your browser address bar after the Tableau Server URL.
For Tableau Server, to specify the default site, omit
For Tableau Cloud, a sign-in request must have a |
Permissions
Tableau Server users who are not server administrators can switch sites, provided that they have access to the destination site.
Response Code
200
Response Body
<tsResponse>
<credentials token="authentication-token" >
<site id="site-id" contentUrl="content-url" />
<user id="user-id-of-signed-in-user" />
</credentials>
</tsResponse>
Version
Version 2.6 and later. For more information, see REST API and Resource Versions.
Errors
HTTP status | error Code |
Condition | Details |
---|---|---|---|
400 | 400000 | Bad request | The content of the request body is missing or incomplete, or contains malformed XML. |
401 | 401000 | Unauthorized access | No authentication credentials were provided. |
401 | 401002 | Unauthorized access | Invalid authentication credentials were provided. |
401 | 401003 | Switch site error | There was a problem switching sites. The site might be unavailable or is not found. |
403 | 403070 | Cannot switch to the same site | The site specified as the destination site is also the current site. |
405 | 405000 | Invalid request method | Request type was not POST. |
For more information, see Handling Errors.
Example
curl "https://MY-SERVER/api/3.19/auth/switchSite" -X POST -H "X-Tableau-Auth:12ab34cd56ef78ab90cd12ef34ab56cd"-d @switch_site.xml
Content of switch_site.xml:
<tsRequest>
<site contentUrl="MarketingSite" />
</tsRequest>
Example response:
<tsResponse version-and-namespace-settings>
<credentials token="HvZMqFFfQQmOM4L-AZNIQA|5fI6T54OPK1Gn1p4w0RtHv6EkojWRTwq|a946d998-2ead-4894-bb50-1054a91dcab3">
<site id="9a8b7c6d-5e4f-3a2b-1c0d-9e8f7a6b5c4d"
contentUrl="MarketingSite"/>
</credentials>
</tsResponse>