Skip to content

Conversation

@tanya732
Copy link
Contributor

@tanya732 tanya732 commented Oct 13, 2025

Changes

Added field skip_non_verifiable_callback_uri_confirmation_prompt for Client and Tenant Endpoints

Manual Testing Code

  • Install node autho using npm install auth0
  • Initialize your client class with a client ID, client secret and a domain from auth0 dashboard
const client = new ManagementClient({
   domain: "<DOMIAN>",
   clientId: "<CLIENT_ID>",
   clientSecret: "<CLIENT_SECRET>"
 });
 
 // Update Client 
 const updateClientPayload: ClientUpdate = {
   skip_non_verifiable_callback_uri_confirmation_prompt: true
 }

 const resp = await auth0.clients.update({client_id: "<CLIENT_ID"}, updateClientPayload);
 console.log("Updated Client : ", resp.data)
 
 //Update tenant Setting with skip_non_verifiable_callback_uri_confirmation_prompt
   const tenantSettingsUpdatePayload: TenantSettingsUpdate = {
   skip_non_verifiable_callback_uri_confirmation_prompt: true 
 };

const updateTenantSetting = await auth0.tenants.updateSettings(tenantSettingsUpdatePayload);
console.log("Updated Tenant Settings : ", updateTenantSetting.data)

@tanya732 tanya732 requested a review from a team as a code owner October 13, 2025 12:46
@tanya732 tanya732 changed the base branch from master to v4 October 13, 2025 12:46
@tanya732 tanya732 merged commit 8819936 into v4 Oct 13, 2025
1 check passed
@tanya732 tanya732 deleted the sdk-6134-custom-URI-node-support branch October 13, 2025 14:16
@tanya732 tanya732 mentioned this pull request Oct 14, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants