Credentials
Send TOTP code
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.
post/v1/credentials/totp
Headers
x-api-keystring nullable
Skyvern API key for authentication. API key can be found at https://app.skyvern.com/settings.
Skyvern API key for authentication. API key can be found at https://app.skyvern.com/settings.
Request body
Example request
{
"totp_identifier": "john.doe@example.com",
"task_id": "task_123456",
"workflow_id": "wpid_123456",
"workflow_run_id": "wr_123456",
"source": "email",
"content": "Hello, your verification code is 123456",
"expired_at": "2025-01-01T00:00:00Z"
}Response
Successful Response
Example response
{
"totp_identifier": "john.doe@example.com",
"task_id": "task_123456",
"workflow_id": "wpid_123456",
"workflow_run_id": "wr_123456",
"source": "email",
"content": "Hello, your verification code is 123456",
"expired_at": "2025-01-01T00:00:00Z"
}