# UpdateLoginFlowBody


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**csrf_token** | **string** | Sending the anti-csrf token is only required for browser login flows. | [default to undefined]
**identifier** | **string** | Identifier is the email or username of the user trying to log in. | [default to undefined]
**method** | **string** | Method should be set to \&quot;password\&quot; when logging in using the identifier and password strategy. | [default to undefined]
**password** | **string** | The user\&#39;s password. | [default to undefined]
**password_identifier** | **string** | Identifier is the email or username of the user trying to log in. This field is deprecated! | [optional] [default to undefined]
**transient_payload** | **object** | Transient data to pass along to any webhooks | [optional] [default to undefined]
**id_token** | **string** | IDToken is an optional id token provided by an OIDC provider  If submitted, it is verified using the OIDC provider\&#39;s public key set and the claims are used to populate the OIDC credentials of the identity. If the OIDC provider does not store additional claims (such as name, etc.) in the IDToken itself, you can use the &#x60;traits&#x60; field to populate the identity\&#39;s traits. Note, that Apple only includes the users email in the IDToken.  Supported providers are Apple Google | [optional] [default to undefined]
**id_token_nonce** | **string** | IDTokenNonce is the nonce, used when generating the IDToken. If the provider supports nonce validation, the nonce will be validated against this value and required. | [optional] [default to undefined]
**provider** | **string** | The provider to register with | [default to undefined]
**traits** | **object** | The identity traits. This is a placeholder for the registration flow. | [optional] [default to undefined]
**upstream_parameters** | **object** | UpstreamParameters are the parameters that are passed to the upstream identity provider.  These parameters are optional and depend on what the upstream identity provider supports. Supported parameters are: &#x60;login_hint&#x60; (string): The &#x60;login_hint&#x60; parameter suppresses the account chooser and either pre-fills the email box on the sign-in form, or selects the proper session. &#x60;hd&#x60; (string): The &#x60;hd&#x60; parameter limits the login/registration process to a Google Organization, e.g. &#x60;mycollege.edu&#x60;. &#x60;prompt&#x60; (string): The &#x60;prompt&#x60; specifies whether the Authorization Server prompts the End-User for reauthentication and consent, e.g. &#x60;select_account&#x60;. &#x60;acr_values&#x60; (string): The &#x60;acr_values&#x60; specifies the Authentication Context Class Reference values for the authorization request. | [optional] [default to undefined]
**totp_code** | **string** | The TOTP code. | [default to undefined]
**webauthn_login** | **string** | Login a WebAuthn Security Key  This must contain the ID of the WebAuthN connection. | [optional] [default to undefined]
**lookup_secret** | **string** | The lookup secret. | [default to undefined]
**address** | **string** | Address is the address to send the code to, in case that there are multiple addresses. This field is only used in two-factor flows and is ineffective for passwordless flows. | [optional] [default to undefined]
**code** | **string** | Code is the 6 digits code sent to the user | [optional] [default to undefined]
**resend** | **string** | Resend is set when the user wants to resend the code | [optional] [default to undefined]
**passkey_login** | **string** | Login a WebAuthn Security Key  This must contain the ID of the WebAuthN connection. | [optional] [default to undefined]

## Example

```typescript
import { UpdateLoginFlowBody } from '@ory/kratos-client';

const instance: UpdateLoginFlowBody = {
    csrf_token,
    identifier,
    method,
    password,
    password_identifier,
    transient_payload,
    id_token,
    id_token_nonce,
    provider,
    traits,
    upstream_parameters,
    totp_code,
    webauthn_login,
    lookup_secret,
    address,
    code,
    resend,
    passkey_login,
};
```

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
