Forum Discussion
cristinanazario
Jul 03, 2023Copper Contributor
Guest accounts returning no repo when integrating with Azure Repos through Postman
Hello, I have a scenario I would like some guidance, at the company where I work we use the free Postman. Our project collaboration and organization tool is Azure Devops. In our teams there are peo...
Kidd_Ip
Sep 10, 2025MVP
Take this:
- Enable Third-Party App Access in Azure DevOps
Make sure your organization has this enabled:
- Go to Azure DevOps > Organization Settings > Policies
- Toggle “Third-party application access via OAuth” to ON
- Use Internal Accounts Instead of Guests
If possible, create internal Azure AD accounts for external collaborators. This avoids the guest-user token limitations and ensures full compatibility with Postman.
- Use Personal Access Tokens (PAT) Instead of OAuth
Postman can connect to Azure DevOps using a PAT:
- Generate a PAT from Azure DevOps > User Settings > Personal Access Tokens
- Use it in Postman as a Basic Auth header:
Authorization: Basic <Base64EncodedPAT>
This bypasses the OAuth flow and works for most users, including guests—though some restrictions may still apply depending on your Azure AD setup.