client.exports.get_files_csv_runs

A method of the Exports endpoint.

get_files_csv_runs(id: int, run_id: int) Response

Check status of a run

API URL: GET /exports/files/csv/{id}/runs/{run_id}

import civis
client = civis.APIClient()
response = client.exports.get_files_csv_runs(...)
Parameters:
idint

The ID of the CSV Export job.

run_idint

The ID of the run.

Returns:
civis.Response
  • id : 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.