client.jobs.get_runs_inputs
A method of the Jobs endpoint.
- get_runs_inputs(id: int, run_id: int) Response
Get the inputs for a run
API URL:
GET /jobs/{id}/runs/{run_id}/inputsimport civis client = civis.APIClient() response = client.jobs.get_runs_inputs(...)
- Parameters:
- idint
The ID of the job.
- run_idint
The ID of the run.
- Returns:
civis.Response- values
civis.Response The inputs of the job at the time of the run.
- values