Create Tableau Server
POST/org/:orgId/tableau
Create a new Tableau Server Configurations
Request
Path Parameters
orgId stringrequired
The Organization Id (UUID) for which you are querying.
Query Parameters
mode stringrequired
If mode is equal to the string 'test', the server will validate the configuration and the create will not be executed.
- application/json
Body
required
any
Responses
- 200
- 401
- 404
- 500
Success.
- application/json
- Schema
- Example (from schema)
- Example
Schema
any
{
"status": {
"i18n_message": "response.ok",
"message": "OK"
},
"response": {
"org_id": "default",
"name": "Sales Tableau Server",
"server_uri": "https://tableau.server.com",
"username": "user",
"password": "password",
"raw_site_names": "sales, sales Operations",
"default_site_name": "default",
"site_names": [
"sales",
"sales Operations"
]
}
}
{
"status": {
"i18n_message": "response.ok",
"message": "OK"
},
"response": {
"org_id": "default",
"name": "Sales Tableau Server",
"server_uri": "https://tableau.server.com",
"username": "user",
"password": "password",
"raw_site_names": "sales, sales Operations",
"default_site_name": "default",
"site_names": [
"sales",
"sales Operations"
]
}
}
This error will occur if calling user does not have access right for the API.
This error will occur if the org identified by orgId does not exist.
A server error occurred. Check the logs for more details.
Loading...