From 25fa083319a3b1b673ae16348da7be0dd6b9f28e Mon Sep 17 00:00:00 2001 From: Shuchang Zheng Date: Fri, 6 Feb 2026 19:46:22 -0800 Subject: [PATCH] Update API specifications with fern api update (#4657) Co-authored-by: github-actions --- fern/openapi/skyvern_openapi.json | 163 ++++++++++++++++++++++++++++++ 1 file changed, 163 insertions(+) diff --git a/fern/openapi/skyvern_openapi.json b/fern/openapi/skyvern_openapi.json index 05df5580..bfadd192 100644 --- a/fern/openapi/skyvern_openapi.json +++ b/fern/openapi/skyvern_openapi.json @@ -1208,6 +1208,169 @@ ] } }, + "/v1/workflows/{workflow_permanent_id}": { + "get": { + "tags": [ + "Workflows" + ], + "summary": "Get Workflow", + "operationId": "get_workflow_v1_workflows__workflow_permanent_id__get", + "parameters": [ + { + "name": "workflow_permanent_id", + "in": "path", + "required": true, + "schema": { + "type": "string", + "title": "Workflow Permanent Id" + } + }, + { + "name": "version", + "in": "query", + "required": false, + "schema": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "title": "Version" + } + }, + { + "name": "template", + "in": "query", + "required": false, + "schema": { + "type": "boolean", + "default": false, + "title": "Template" + } + }, + { + "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": { + "$ref": "#/components/schemas/Workflow" + } + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + } + }, + "x-fern-sdk-method-name": "get_workflow" + } + }, + "/v1/workflows/{workflow_permanent_id}/versions": { + "get": { + "tags": [ + "Workflows" + ], + "summary": "Get Workflow Versions", + "description": "Get all versions of a workflow by its permanent ID.", + "operationId": "get_workflow_versions_v1_workflows__workflow_permanent_id__versions_get", + "parameters": [ + { + "name": "workflow_permanent_id", + "in": "path", + "required": true, + "schema": { + "type": "string", + "title": "Workflow Permanent Id" + } + }, + { + "name": "template", + "in": "query", + "required": false, + "schema": { + "type": "boolean", + "default": false, + "title": "Template" + } + }, + { + "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/Workflow" + }, + "title": "Response Get Workflow Versions V1 Workflows Workflow Permanent Id Versions Get" + } + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + } + }, + "x-fern-sdk-method-name": "get_workflow_versions" + } + }, "/v1/upload_file": { "post": { "tags": [