Home > Enterprise >  Customize a message when user receive an error "401 - Uh-oh, you do not have access"
Customize a message when user receive an error "401 - Uh-oh, you do not have access"

Time:04-14

Can we customize a message when user receive an error "401 - Uh-oh, you do not have access" in Azure DevOps? I want to direct users to companies form where they can request access in a more structured way. enter image description here

CodePudding user response:

Can we customize a message when user receive an error "401 - Uh-oh, you do not have access" in Azure DevOps?

No, we cannot change that default message in Azure DevOps.

You can try to resolve that permission issue by following the below steps:

You can try to open a new incognito window and sign in to your organization : https://dev.azure.com/{organizationName} with the invited account in this incognito window.

This is because when the user clicked the email invitation, this will automatically jump to the browser to use the default account cached by the browser to log in to the organization, and this default account could not be the invited account.

For more information, Refer this link.

  • Related