UNPKG

@ory/kratos-client

Version:

OpenAPI client for @ory/kratos-client

32 lines (24 loc) 1.4 kB
# UpdateLoginFlowWithPasswordMethod Update Login Flow with Password Method ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **csrf_token** | **string** | Sending the anti-csrf token is only required for browser login flows. | [optional] [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 \"password\" when logging in using the identifier and password strategy. | [default to undefined] **password** | **string** | The user\'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] ## Example ```typescript import { UpdateLoginFlowWithPasswordMethod } from '@ory/kratos-client'; const instance: UpdateLoginFlowWithPasswordMethod = { csrf_token, identifier, method, password, password_identifier, transient_payload, }; ``` [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)