client.reports.get_refresh
A method of the Reports endpoint.
- get_refresh(id: int, job_id: str) Response
Get the status of a Tableau extract refresh job
API URL:
GET /reports/{id}/refresh/{job_id}import civis client = civis.APIClient() response = client.reports.get_refresh(...)
- Parameters:
- idint
The ID of this report.
- job_idstr
The Tableau extract refresh job ID.
- Returns:
civis.Response- job_idstr
The Tableau extract refresh job ID.
- statestr
Current state of the refresh job: queued, running, succeeded, or failed.
- errorstr
Error message from Tableau when status is failed.