Runs
Nested technique run endpoints.
Start a technique run
client.techniques.runs.create(stringtechniqueID, RunCreateParams { inputs, mode, callback_url, idempotency_key } body, RequestOptionsoptions?): RunCreateResponse { created_at, progress, run_id, 8 more }
POST/techniques/{techniqueId}/runs
List technique run history
client.techniques.runs.list(RunListParams { cursor, limit, project_id, 3 more } query?, RequestOptionsoptions?): TechniqueRunsCursorPage<RunListResponse { created_at, progress, project_id, 12 more } >
GET/technique-runs
Get a technique run
client.techniques.runs.retrieve(stringrunID, RunRetrieveParams { techniqueId } params, RequestOptionsoptions?): RunRetrieveResponse { created_at, progress, run_id, 8 more }
GET/techniques/{techniqueId}/runs/{runId}