I am trying to get the latest build-logs from azure devops with postman (as an example).
I have a accesstoken which I use to get all workitems and this works fine.
for example:
https://dev.azure.com/{organization}/{project}/_apis/wit/workitemsbatch?api-version=5.1
however, when I do the same for builds
https://dev.azure.com/{organization}/{project}/_apis/build/builds?api-version=5.1
I am getting an 401 Unauthorized.
It's the same token from my App Registration. My permissions is just the one: https://app.vssps.visualstudio.com/user_impersonation
What am I missing here?