# Generate an authenticated URL for browser sign-in Creates a one-time URL that automatically signs the user in and redirects to the specified page. Use this whenever the user needs to complete an action in the browser (e.g., adding a payment method, managing account settings). The URL expires after 60 seconds and is single-use. Endpoint: POST /mcp/v1/actions/ud_authenticated_url_get Version: 1.0.0 Security: bearerAuth ## Request fields (application/json): - `path` (string, required) Page path to open in the browser, e.g. "/account/payments/card" ## Response 200 fields (application/json): - `url` (string) One-time authenticated URL (valid for 60 seconds) - `expiresIn` (number) Seconds until the URL expires - `instructions` (string) Guidance for the user ## Response 401 fields