# Request to add email/password to account Initiates the process of adding email and password authentication to an existing account. A confirmation code will be sent to the provided email address. Endpoint: POST /api/v1/accounts/logins/add-email-password Version: 1.0 Security: header ## Request fields (application/json): - `email` (string, required) New email Example: "user@gmail.com" - `password` (string, required) New password, enforced by password policy Example: "PassW0rd!" ## Response 400 fields (application/json): - `errorCode` (string, required) Error code - `message` (string, required) Error message - `docUrl` (string) Link to documentation ## Response 401 fields (application/json): - `errorCode` (string, required) Error code - `message` (string, required) Error message - `docUrl` (string) Link to documentation ## Response 409 fields (application/json): - `errorCode` (string, required) Error code - `message` (string, required) Error message - `docUrl` (string) Link to documentation