Getting 203 when calling dev.azure.com "ResultDetailsByRelease"

Mark Masikip 1 Reputation point
2022-05-30T09:08:52.387+00:00

Hi -

I'm trying to call the URL below in ADO, but I'm getting 203.

  • https://dev.azure.com/<ORG>/<PROJECT>/_apis/testresults/ResultDetailsByRelease?releaseId=1649&releaseEnvId=4651
    206665-image.png

The same format URL works fine in our TFS instance.

  • https://webapptfs.<DOMAIN>.co.nz/<ORG>/<PROJECT>/_apis/testresults/ResultDetailsByRelease?releaseId=2224&releaseEnvId=3123
    206667-image.png

I'm trying this out in Postman first using NTLM auth, and on a C# project using PAT. I'm not quite sure if "ResultDetailsByRelease" is even available on our ADO instance version, or how to replicate the same result on that version.

Microsoft Partner Center API
Microsoft Partner Center API
Microsoft Partner Center: A Microsoft website for partners that provides access to product support, a partner community, and other partner services.API: A software intermediary that allows two applications to interact with each other.
313 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Mark Masikip 1 Reputation point
    2022-09-05T05:42:09.19+00:00

    This has been solved by having vstmr as prefix and now using https://vstmr.dev.azure.com/<ORG>/<PROJECT>/_apis/testresults/ResultDetailsByRelease?releaseId=1782&releaseEnvId=5063

    Authorization is "Basic "+ Base64 encoded (":<PAT_HERE>").

    0 comments No comments