Complete the code to publish a workbook to Tableau Cloud using Tableau's REST API.
POST /api/3.10/sites/[1]/workbooks
The REST API endpoint requires the site-id to specify the Tableau Cloud site where the workbook will be published.
Complete the Tableau Cloud URL to access the dashboard named 'Sales Overview'.
https://tableau.cloud/#/site/[1]/views/SalesOverview
The URL requires the sitename to specify which Tableau Cloud site to access the dashboard.
Fix the error in the Tableau Cloud REST API call to get a list of projects.
GET /api/3.10/sites/[1]/projects
The correct REST API path requires the site-id to list projects within that site.
Fill both blanks to create a Tableau Cloud REST API call to update workbook permissions.
PUT /api/3.10/sites/[1]/workbooks/[2]/permissions
The API call requires the site-id and the workbook-id to update permissions on a specific workbook.
Fill all three blanks to write a Tableau Cloud REST API call to delete a datasource.
DELETE /api/3.10/sites/[1]/datasources/[2]/connections/[3]
To delete a datasource connection, the API call needs the site-id, datasource-id, and connection-id.