Update API specifications with fern api update (#4754)

Co-authored-by: github-actions <github-actions@github.com>
This commit is contained in:
Shuchang Zheng
2026-02-14 20:50:19 -08:00
committed by GitHub
parent 3d4192cc38
commit 757e859c7c

View File

@@ -105,7 +105,7 @@
"/v1/run/workflows": {
"post": {
"tags": [
"Workflows"
"Workflow Runs"
],
"summary": "Run a workflow",
"description": "Run a workflow",
@@ -228,7 +228,7 @@
"get": {
"tags": [
"Agent",
"Workflows"
"Workflow Runs"
],
"summary": "Get a run by id",
"description": "Get run information (task run, workflow run)",
@@ -334,7 +334,7 @@
"post": {
"tags": [
"Agent",
"Workflows"
"Workflow Runs"
],
"summary": "Cancel a run by id",
"description": "Cancel a run (task or workflow)",
@@ -571,10 +571,15 @@
"type": "null"
}
],
"description": "Unified search across workflow title, folder name, and parameter metadata (key, description, default_value).",
"description": "Case-insensitive substring search across: workflow title, folder name, and parameter metadata (key, description, default_value). A workflow is returned if any of these fields match. Soft-deleted parameter definitions are excluded. Takes precedence over the deprecated `title` parameter.",
"examples": [
"my_workflow",
"login_url",
"production"
],
"title": "Search Key"
},
"description": "Unified search across workflow title, folder name, and parameter metadata (key, description, default_value)."
"description": "Case-insensitive substring search across: workflow title, folder name, and parameter metadata (key, description, default_value). A workflow is returned if any of these fields match. Soft-deleted parameter definitions are excluded. Takes precedence over the deprecated `title` parameter."
},
{
"name": "title",
@@ -582,12 +587,12 @@
"required": false,
"schema": {
"type": "string",
"description": "Deprecated: use search_key instead.",
"description": "Deprecated: use search_key instead. Falls back to title-only search if search_key is not provided.",
"deprecated": true,
"default": "",
"title": "Title"
},
"description": "Deprecated: use search_key instead.",
"description": "Deprecated: use search_key instead. Falls back to title-only search if search_key is not provided.",
"deprecated": true
},
{
@@ -1021,7 +1026,8 @@
"/v1/runs/{run_id}/retry_webhook": {
"post": {
"tags": [
"Agent"
"Agent",
"Workflow Runs"
],
"summary": "Retry run webhook",
"description": "Retry sending the webhook for a run",
@@ -1119,7 +1125,7 @@
"get": {
"tags": [
"Agent",
"Workflows"
"Workflow Runs"
],
"summary": "Get run timeline",
"description": "Get timeline for a run (workflow run or task_v2 run)",
@@ -1208,6 +1214,158 @@
]
}
},
"/v1/workflows/runs": {
"get": {
"tags": [
"Workflow Runs"
],
"summary": "List workflow runs",
"description": "List workflow runs across all workflows for the current organization.\n\nResults are paginated and can be filtered by **status**, **search_key**, and **error_code**. All filters are combined with **AND** logic — a run must match every supplied filter to be returned.\n\n### search_key\n\nA case-insensitive substring search that matches against **any** of the following fields:\n\n| Searched field | Description |\n|---|---|\n| `workflow_run_id` | The unique run identifier (e.g. `wr_123…`) |\n| Parameter **key** | The `key` of any workflow parameter definition associated with the run |\n| Parameter **description** | The `description` of any workflow parameter definition |\n| Run parameter **value** | The actual value supplied for any parameter when the run was created |\n| `extra_http_headers` | Extra HTTP headers attached to the run (searched as raw JSON text) |\n\nSoft-deleted parameter definitions are excluded from key/description matching. A run is returned if **any** of the fields above contain the search term.\n\n### error_code\n\nAn **exact-match** filter against the `error_code` field inside each task's `errors` JSON array. A run matches if **any** of its tasks contains an error object with a matching `error_code` value. Error codes are user-defined strings set during workflow execution (e.g. `INVALID_CREDENTIALS`, `LOGIN_FAILED`, `CAPTCHA_DETECTED`).\n\n### Combining filters\n\nAll query parameters use AND logic:\n- `?status=failed` — only failed runs\n- `?status=failed&error_code=LOGIN_FAILED` — failed runs **and** have a LOGIN_FAILED error\n- `?status=failed&error_code=LOGIN_FAILED&search_key=prod_credential` — all three conditions must match",
"operationId": "get_workflow_runs_v1_workflows_runs_get",
"parameters": [
{
"name": "page",
"in": "query",
"required": false,
"schema": {
"type": "integer",
"minimum": 1,
"description": "Page number for pagination.",
"default": 1,
"title": "Page"
},
"description": "Page number for pagination."
},
{
"name": "page_size",
"in": "query",
"required": false,
"schema": {
"type": "integer",
"minimum": 1,
"description": "Number of runs to return per page.",
"default": 10,
"title": "Page Size"
},
"description": "Number of runs to return per page."
},
{
"name": "status",
"in": "query",
"required": false,
"schema": {
"anyOf": [
{
"type": "array",
"items": {
"$ref": "#/components/schemas/WorkflowRunStatus"
}
},
{
"type": "null"
}
],
"description": "Filter by one or more run statuses.",
"title": "Status"
},
"description": "Filter by one or more run statuses."
},
{
"name": "search_key",
"in": "query",
"required": false,
"schema": {
"anyOf": [
{
"type": "string",
"maxLength": 500
},
{
"type": "null"
}
],
"description": "Case-insensitive substring search across: workflow run ID, parameter key, parameter description, run parameter value, and extra HTTP headers. A run is returned if any of these fields match. Soft-deleted parameter definitions are excluded from key/description matching.",
"examples": [
"login_url",
"credential_value",
"wr_abc123"
],
"title": "Search Key"
},
"description": "Case-insensitive substring search across: workflow run ID, parameter key, parameter description, run parameter value, and extra HTTP headers. A run is returned if any of these fields match. Soft-deleted parameter definitions are excluded from key/description matching."
},
{
"name": "error_code",
"in": "query",
"required": false,
"schema": {
"anyOf": [
{
"type": "string",
"maxLength": 500
},
{
"type": "null"
}
],
"description": "Exact-match filter on the error_code field inside each task's errors JSON array. A run matches if any of its tasks contains an error with a matching error_code. Error codes are user-defined strings set during workflow execution.",
"examples": [
"INVALID_CREDENTIALS",
"LOGIN_FAILED",
"CAPTCHA_DETECTED"
],
"title": "Error Code"
},
"description": "Exact-match filter on the error_code field inside each task's errors JSON array. A run matches if any of its tasks contains an error with a matching error_code. Error codes are user-defined strings set during workflow execution."
},
{
"name": "x-api-key",
"in": "header",
"required": false,
"schema": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"description": "Skyvern API key for authentication. API key can be found at https://app.skyvern.com/settings.",
"title": "X-Api-Key"
},
"description": "Skyvern API key for authentication. API key can be found at https://app.skyvern.com/settings."
}
],
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/WorkflowRun"
},
"title": "Response Get Workflow Runs V1 Workflows Runs Get"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
},
"x-fern-sdk-method-name": "get_workflow_runs"
}
},
"/v1/workflows/{workflow_permanent_id}": {
"get": {
"tags": [
@@ -3963,6 +4121,11 @@
],
"title": "Has Mini Agent"
},
"skip_auto_complete_tab": {
"type": "boolean",
"title": "Skip Auto Complete Tab",
"default": false
},
"created_at": {
"anyOf": [
{
@@ -8688,7 +8851,8 @@
"csv",
"excel",
"pdf",
"image"
"image",
"docx"
],
"title": "FileType"
},
@@ -17735,6 +17899,326 @@
"type": "object",
"title": "WorkflowRequest"
},
"WorkflowRun": {
"properties": {
"workflow_run_id": {
"type": "string",
"title": "Workflow Run Id"
},
"workflow_id": {
"type": "string",
"title": "Workflow Id"
},
"workflow_permanent_id": {
"type": "string",
"title": "Workflow Permanent Id"
},
"organization_id": {
"type": "string",
"title": "Organization Id"
},
"browser_session_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Browser Session Id"
},
"browser_profile_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Browser Profile Id"
},
"debug_session_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Debug Session Id"
},
"status": {
"$ref": "#/components/schemas/WorkflowRunStatus"
},
"extra_http_headers": {
"anyOf": [
{
"additionalProperties": {
"type": "string"
},
"type": "object"
},
{
"type": "null"
}
],
"title": "Extra Http Headers"
},
"proxy_location": {
"anyOf": [
{
"$ref": "#/components/schemas/ProxyLocation"
},
{
"$ref": "#/components/schemas/GeoTarget"
},
{
"additionalProperties": true,
"type": "object"
},
{
"type": "null"
}
],
"title": "Proxy Location"
},
"webhook_callback_url": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Webhook Callback Url"
},
"webhook_failure_reason": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Webhook Failure Reason"
},
"totp_verification_url": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Totp Verification Url"
},
"totp_identifier": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Totp Identifier"
},
"failure_reason": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Failure Reason"
},
"parent_workflow_run_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Parent Workflow Run Id"
},
"workflow_title": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Workflow Title"
},
"max_screenshot_scrolls": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Max Screenshot Scrolls"
},
"browser_address": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Browser Address"
},
"run_with": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Run With"
},
"script_run": {
"anyOf": [
{
"$ref": "#/components/schemas/ScriptRunResponse"
},
{
"type": "null"
}
]
},
"job_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Job Id"
},
"depends_on_workflow_run_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Depends On Workflow Run Id"
},
"sequential_key": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Sequential Key"
},
"ai_fallback": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"title": "Ai Fallback"
},
"code_gen": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"title": "Code Gen"
},
"queued_at": {
"anyOf": [
{
"type": "string",
"format": "date-time"
},
{
"type": "null"
}
],
"title": "Queued At"
},
"started_at": {
"anyOf": [
{
"type": "string",
"format": "date-time"
},
{
"type": "null"
}
],
"title": "Started At"
},
"finished_at": {
"anyOf": [
{
"type": "string",
"format": "date-time"
},
{
"type": "null"
}
],
"title": "Finished At"
},
"created_at": {
"type": "string",
"format": "date-time",
"title": "Created At"
},
"modified_at": {
"type": "string",
"format": "date-time",
"title": "Modified At"
}
},
"type": "object",
"required": [
"workflow_run_id",
"workflow_id",
"workflow_permanent_id",
"organization_id",
"status",
"created_at",
"modified_at"
],
"title": "WorkflowRun"
},
"WorkflowRunBlock": {
"properties": {
"workflow_run_block_id": {
@@ -18677,6 +19161,21 @@
],
"title": "WorkflowRunResponse"
},
"WorkflowRunStatus": {
"type": "string",
"enum": [
"created",
"queued",
"running",
"failed",
"terminated",
"canceled",
"timed_out",
"completed",
"paused"
],
"title": "WorkflowRunStatus"
},
"WorkflowRunTimeline": {
"properties": {
"type": {