0
0
Tableaubi_tool~10 mins

Tableau Cloud basics - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to publish a workbook to Tableau Cloud using Tableau's REST API.

Tableau
POST /api/3.10/sites/[1]/workbooks
Drag options to blanks, or click blank then click option'
Asite-id
Busers
Cworkbooks
Dprojects
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'users' or 'projects' instead of the site identifier.
Confusing 'workbooks' with the site ID in the URL.
2fill in blank
medium

Complete the Tableau Cloud URL to access the dashboard named 'Sales Overview'.

Tableau
https://tableau.cloud/#/site/[1]/views/SalesOverview
Drag options to blanks, or click blank then click option'
Asitename
Bdashboardid
Cprojectname
Dusername
Attempts:
3 left
💡 Hint
Common Mistakes
Using username or project name instead of the site name.
Confusing dashboard ID with site name in the URL.
3fill in blank
hard

Fix the error in the Tableau Cloud REST API call to get a list of projects.

Tableau
GET /api/3.10/sites/[1]/projects
Drag options to blanks, or click blank then click option'
Adatasources
Busers
Cworkbooks
Dsite-id
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'users' or 'workbooks' instead of 'site-id' in the URL.
Omitting the site identifier causing an invalid API call.
4fill in blank
hard

Fill both blanks to create a Tableau Cloud REST API call to update workbook permissions.

Tableau
PUT /api/3.10/sites/[1]/workbooks/[2]/permissions
Drag options to blanks, or click blank then click option'
Asite-id
Bworkbook-id
Cuser-id
Dproject-id
Attempts:
3 left
💡 Hint
Common Mistakes
Using user-id or project-id instead of workbook-id for the second blank.
Mixing up the order of site-id and workbook-id.
5fill in blank
hard

Fill all three blanks to write a Tableau Cloud REST API call to delete a datasource.

Tableau
DELETE /api/3.10/sites/[1]/datasources/[2]/connections/[3]
Drag options to blanks, or click blank then click option'
Asite-id
Bdatasource-id
Cconnection-id
Dworkbook-id
Attempts:
3 left
💡 Hint
Common Mistakes
Using workbook-id instead of connection-id.
Omitting one of the required IDs causing an invalid request.