Change Password
change Password.
In the dashboard Manage this visually in Norbix Cloud β see Membership. ## Use it from code Every Norbix SDK exposes this method as a method β see Change Password in the SDK reference, with examples in every language.
import { Norbix } from '@norbix.ai/ts';
const norbix = new Norbix();
const result = await norbix.api.membership.changePassword({
databaseIntegrationId: 'int_4kX9mQvR2tYw7ZbC1dFgHj',
});using Norbix.Sdk;
using Norbix.Sdk.Types.Api;
using var client = new NorbixClient();
var result = await client.Membership.ChangePasswordAsync(new ChangePasswordRequest
{
DatabaseIntegrationId = "int_4kX9mQvR2tYw7ZbC1dFgHj",
});from norbix_python import NorbixApi
norbix = NorbixApi()
result = norbix.membership.change_password(
databaseIntegrationId="int_4kX9mQvR2tYw7ZbC1dFgHj",
)In the dashboard
API reference
Last updated