v97

latestOpenAPI 3.1.0raw.githubusercontent.com2026-07-31135175384.2 KB
Managed Auth

Submit field values

Submits field values for the login form. Poll the auth connection to track progress and get results.

post/auth/connections/{id}/submit

Path parameters

idstring required

Auth connection ID

Request body

field_valuesobject

Canonical map of field ID to submitted value.

selected_choice_idstring

Canonical choice ID selected by the user.

fieldsobject

Map of field name to value

sso_button_selectorstring

XPath selector for the SSO button to click (ODA). Use sso_provider instead for CUA.

sso_providerstring

SSO provider to click, matching the provider field from pending_sso_buttons (e.g., "google", "github"). Cannot be used with sso_button_selector.

mfa_option_idstring

The MFA method type to select (when mfa_options were returned)

sign_in_option_idstring

The sign-in option ID to select (when sign_in_options were returned)

Example request

{
  "field_values": {
    "field_email": "user@example.com",
    "field_password": "secret"
  },
  "selected_choice_id": "google",
  "fields": {
    "email": "user@example.com",
    "password": "secret"
  },
  "sso_button_selector": "xpath=//button[contains(text(), 'Continue with Google')]",
  "sso_provider": "google",
  "mfa_option_id": "sms",
  "sign_in_option_id": "work-account"
}

Response

Submission accepted for processing

acceptedboolean required

Whether the submission was accepted for processing