You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/v3-openapi.yaml
+8-12Lines changed: 8 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -1237,10 +1237,10 @@ paths:
1237
1237
description: The run ID.
1238
1238
output:
1239
1239
type: string
1240
-
description: The serialized output (present when ok is true).
1240
+
description: The serialized output as a string (present when ok is true). Use outputType to determine how to parse it — for "application/json" use JSON.parse().
1241
1241
outputType:
1242
1242
type: string
1243
-
description: The content type of the output, e.g. "application/json".
1243
+
description: The content type of the serialized output, e.g. "application/json".
1244
1244
error:
1245
1245
type: object
1246
1246
description: Error details (present when ok is false).
description: Returns the execution results of all runs in a batch. Returns 404 if the batch doesn't exist.
2294
+
description: Returns the execution results of all completed runs in a batch. Only finished runs (successful or failed) are included in the items array — runs that are still executing are omitted. Returns 404 if the batch doesn't exist.
2299
2295
responses:
2300
2296
"200":
2301
2297
description: Successful request
@@ -2322,10 +2318,10 @@ paths:
2322
2318
description: The run ID.
2323
2319
output:
2324
2320
type: string
2325
-
description: The serialized output (present when ok is true).
2321
+
description: The serialized output as a string (present when ok is true). Use outputType to determine how to parse it — for "application/json" use JSON.parse().
2326
2322
outputType:
2327
2323
type: string
2328
-
description: The content type of the output, e.g. "application/json".
2324
+
description: The content type of the serialized output, e.g. "application/json".
2329
2325
error:
2330
2326
type: object
2331
2327
description: Error details (present when ok is false).
0 commit comments