Change the password belonging to the provided user's access token.
const client = new OutsetaApiClient({ subdomain: 'test-company', accessToken: jwt_user_token }); const response = await client.user.password.update(existingPassword, newPassword); console.log(response);
Response If the server returns a non-"OK" or non-"400" status, the whole response object will be thrown.
Null if response status OK, or the response body with validation errors if response status 400.
Generated using TypeDoc
Change the password belonging to the provided user's access token.
Response If the server returns a non-"OK" or non-"400" status, the whole response object will be thrown.