Runs API
Generierte OpenAPI-Referenz für die Runs-API-Oberfläche.
Überblick
Runs-Endpoints gehören zur öffentlichen Everyn-API. Managed run creation, start/cancel/retry, rows, events, outputs, failures, and resolved retry-lineage results.
Endpunkte
Die generierte OpenAPI-Komponente unten enthält Request-Parameter, Request Bodies, Response Bodies, Statuscodes und Schemas für dieses Tag.
Endpoint-Zusammenfassung für den schnellen Überblick vor der generierten Referenz:
Fehler nutzen die PublicErrorEnvelope-Form mit einem X-Request-Id-Header. Die meisten Endpoints unten liefern 400, 401, 403, 404, 409, 422, 429; die wenigen Abweichungen listen ihre eigenen Statuscodes in der Tabelle, die sonst nur Erfolgs-Responses zeigt. Siehe API-Fehler für Envelope und Recovery-Muster.
| Methode | Pfad | Zusammenfassung | Request Body | Erfolgs-Response |
|---|---|---|---|---|
GET | /v1/runs | List Runs | Keine. | 200 application/json: Page_RunResponse_ |
POST | /v1/runs | Create Run | application/json: RunCreateRequestBody | 201 application/json: RunResponse |
GET | /v1/runs/{run_id} | Get Run | Keine. | 200 application/json: RunResponse |
POST | /v1/runs/{run_id}/cancel | Cancel Run | Keine. | 200 application/json: RunResponse |
GET | /v1/runs/{run_id}/events | List Run Events | Keine. | 200 application/json: Page_RunEventResponse_ |
GET | /v1/runs/{run_id}/failures | List Run Failures | Keine. | 200 application/json: Page_FailureResponse_ |
GET | /v1/runs/{run_id}/failures/{run_row_id} | Get Run Failure | Keine. | 200 application/json: FailureResponse |
GET | /v1/runs/{run_id}/outputs | List Run Outputs | Keine. | 200 application/json: Page_OutputListItemResponse_ |
GET | /v1/runs/{run_id}/outputs/{output_id} | Get Run Output | Keine. | 200 application/json: OutputDetailResponse |
GET | /v1/runs/{run_id}/resolved-results | Get Resolved Run Results | Keine. | 200 application/json: ResolvedResultsResponse |
POST | /v1/runs/{run_id}/resume | Resume Run | Keine. | 200 application/json: RunResponse |
POST | /v1/runs/{run_id}/retry | Create Retry Run | Keine. | 201 application/json: RunResponse |
GET | /v1/runs/{run_id}/rows | List Run Rows | Keine. | 200 application/json: Page_RunRowResponse_ |
GET | /v1/runs/{run_id}/rows/{run_row_id} | Get Run Row | Keine. | 200 application/json: RunRowDetailResponse |
POST | /v1/runs/{run_id}/start | Start Run | Keine. | 200 application/json: RunResponse |
API-Referenz wird geladen...