client.imports.list_runs
A method of the Imports endpoint.
- list_runs(id: int) ListResponse
Get the run history of this import
API URL:
GET /imports/{id}/runsimport civis client = civis.APIClient() response = client.imports.list_runs(...)
- Parameters:
- idint
- Returns:
civis.ListResponseid : 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.