Skip to content

Commit decc309

Browse files
authored
Update help links (#1080)
* Update some links to Tableau REST API docs * Fix link to Python Requests library
1 parent f84c894 commit decc309

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

docs/api-ref.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ Name | Description
297297
`certification_note` | The optional note that describes the certified data source.
298298
`datasource_type` | The type of data source, for example, `sqlserver` or `excel-direct`.
299299
`description` | The description for the data source.
300-
`encrypt_extracts` | A Boolean value to determine if a datasource should be encrypted or not. See [Extract and Encryption Methods](https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_extract_encryption.htm) for more information.
300+
`encrypt_extracts` | A Boolean value to determine if a datasource should be encrypted or not. See [Extract and Encryption Methods](https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_extract_and_encryption.htm) for more information.
301301
`has_extracts` | A Boolean value that indicates whether the datasource has extracts.
302302
`id` | The identifier for the data source. You need this value to query a specific data source or to delete a data source with the `get_by_id` and `delete` methods.
303303
`name` | The name of the data source. If not specified, the name of the published data source file is used.
@@ -1253,7 +1253,7 @@ groups.update(group_item, as_job=False)
12531253

12541254
Updates a group in Tableau Server.
12551255

1256-
REST API: [Update Group](https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_usersgroups.htm#update_group)
1256+
REST API: [Update Group](https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_users_and_groups.htm#update_group)
12571257

12581258

12591259
**Parameters**
@@ -3887,7 +3887,7 @@ tasks.delete(task_id)
38873887

38883888
Deletes an extract refresh task.
38893889

3890-
REST API: [Run Extract Refresh Task](https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_jobstasksschedules.htm#delete_workbook){:target="_blank"}
3890+
REST API: [Delete Extract Refresh Task](https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_jobs_tasks_and_schedules.htm#delete_extract_refresh_task){:target="_blank"}
38913891

38923892
**Parameters**
38933893

@@ -4950,7 +4950,7 @@ workbooks.refresh(workbook_item)
49504950

49514951
Refreshes the extract of an existing workbook.
49524952

4953-
REST API: [Update Workbook Now](https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_workbooksviews.htm#update_workbook_now)
4953+
REST API: [Update Workbook Now](https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref.htm#update_workbook_now)
49544954

49554955
**Parameters**
49564956

@@ -5376,7 +5376,7 @@ Populates the PDF content of the specified workbook.
53765376

53775377
This method populates a PDF with image(s) of the workbook view(s) you specify.
53785378

5379-
REST API: [Download Workbook PDF](https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_workbooksviews.htm#download_workbook_pdf)
5379+
REST API: [Download Workbook PDF](https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref.htm#download_workbook_pdf)
53805380

53815381
**Version**
53825382

docs/sign-in-out.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ server.auth.sign_in(tableau_auth)
9292
server.auth.sign_out()
9393
```
9494

95-
The TSC library uses the Python Requests library under the hood, so you can learn more about the `verify` option on the [Python Requests advanced usage](https://docs.python-requests.org/en/master/user/advanced/#ssl-cert-verification) documentation.
95+
The TSC library uses the Python Requests library under the hood, so you can learn more about the `verify` option on the [Python Requests advanced usage](https://requests.readthedocs.io/en/latest/user/advanced/#ssl-cert-verification) documentation.
9696

9797
You can also set `verify` to `False` to disable the SSL certificate verification step, but this is only useful for development and _should not be used for real production work_.
9898

0 commit comments

Comments
 (0)