From 80ec22c8343499708aff73d1c5805426c66c2fd7 Mon Sep 17 00:00:00 2001 From: Shuchang Zheng Date: Wed, 16 Jul 2025 07:45:29 -0700 Subject: [PATCH] Update API specifications with fern api update (#2960) Co-authored-by: github-actions --- fern/openapi/skyvern_openapi.json | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/fern/openapi/skyvern_openapi.json b/fern/openapi/skyvern_openapi.json index ae12da95..56e307c9 100644 --- a/fern/openapi/skyvern_openapi.json +++ b/fern/openapi/skyvern_openapi.json @@ -1285,7 +1285,7 @@ "tags": [ "Credentials" ], - "summary": "Send TOTP (2FA, MFA) code to Skyvern", + "summary": "Send TOTP code", "description": "Forward a TOTP (2FA, MFA) email or sms message containing the code to Skyvern. This endpoint stores the code in database so that Skyvern can use it while running tasks/workflows.", "operationId": "send_totp_code_v1_credentials_totp_post", "parameters": [ @@ -1340,7 +1340,17 @@ } } }, - "x-fern-sdk-method-name": "send_totp_code" + "x-fern-sdk-method-name": "send_totp_code", + "x-fern-examples": [ + { + "code-samples": [ + { + "sdk": "python", + "code": "from skyvern import Skyvern\n\nskyvern = Skyvern(api_key=\"YOUR_API_KEY\")\nawait skyvern.send_totp_code(totp_code=\"123456\")\n" + } + ] + } + ] } }, "/v1/credentials": {