client.exports.post_files_csv_runs
A method of the Exports endpoint.
- post_files_csv_runs(id: int) Response
Start a run
API URL:
POST /exports/files/csv/{id}/runsimport civis client = civis.APIClient() response = client.exports.post_files_csv_runs(...)
- Parameters:
- idint
The ID of the CSV Export job.
- Returns:
civis.Responseid : int
- statestr
The state of the run. One of queued, running, succeeded, failed or cancelled.
- created_atstr (time)
The time that the run was queued.
- started_atstr (time)
The time that the run started.
- finished_atstr (time)
The time that the run completed.
- errorstr
The error message for this run, if present.
- output_cached_onstr (time)
The time that the output was originally exported, if a cache entry was used by the run.