Azure DevOps Authorizations

Mike Schuman 1 Reputation point
2025-05-09T09:39:08.1133333+00:00

I have added an authorization to Azure DevOps...easy

I now want to Revoke the authorization. When clicking on Revoke, nothing happens (no error, no indication of any action).

What is the next step?

Azure DevOps
0 comments No comments
{count} votes

3 answers

Sort by: Most helpful
  1. Durga Reshma Malthi 660 Reputation points Microsoft External Staff Moderator
    2025-05-09T11:56:55.9366667+00:00

    Hi Mike Schuman

    I believe you are trying to revoke authorization from Authorized OAuth Apps.

    User's image

    Could you please follow the below troubleshooting steps to resolve this issue:

    1. Clear your browser cache and cookies and then try to revoke the authorization again.
    2. Try using a different browser or in incognito mode.
    3. Ensure you're a Project Collection Administrator or have appropriate access rights.
    4. If the authorization is based on Microsoft Entra ID, then remove it from the Azure portal.

    If the authorization involves PAT Token, then please follow the steps mentioned in this document - Revoke PATs

    Additional References:

    1. Manage Authorizations
    2. Developer Community Answer

    Hope this helps!

    Please Let me know if you have any queries.

    0 comments No comments

  2. Mike Schuman 1 Reputation point
    2025-05-12T03:59:58.89+00:00

    Thanks for your response. I can confirm that I am trying to revoke an authorization. I have previously tried all of the steps you mentioned.

    The issue is that the Revoke button does not appear to be clickable on the page. When observing from the console there is a successful query and then a 204 response from the portal. On screen, I see no activity at all and the authorization remains.


  3. Durga Reshma Malthi 660 Reputation points Microsoft External Staff Moderator
    2025-05-14T08:59:07.2433333+00:00

    Hi Mike Schuman

    Did you try using the PowerShell script mentioned above? Could you please check the below steps to resolve this issue:

    1. Please check if you are part of Project Administrator or Contributor to revoke the authorizations.
    2. Try logging out and logging back into the account.
    3. You could also try a hard refresh (Ctrl + Shift + R or Cmd + Shift + R) to force the UI to update.
    4. Consider checking for any browser extensions that might interfere. Open Developer Tools (F12) -> Console tab and watch for any errors when clicking Revoke. That could indicate a UI bug or permissions issue.
    5. If you're still having trouble with curl, try using Postman or another API client to make the request by following this wiki - Revoke Authorizations
    6. You can check this via below cmds:
         GET https://vssps.dev.azure.com/{organization}/_apis/TokenAdmin/Authorizations?api-version=7.1-preview.1
      
      This will list all authorizations and verify whether the one you tried to revoke still exists. You can also delete one explicitly using:
         DELETE https://vssps.dev.azure.com/{organization}/_apis/TokenAdmin/Authorizations/{authorizationId}?api-version=7.1-preview.1
      

    Hope this helps!

    Please Let me know if you have any queries.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.