Hi,
It looks like you are making the call using Postman. I can see that you are using an API key to try and authorize the call from the URL.
If you are using an API key, you will also need to authenticate the principal(User or Service Account) as mentioned here[2]: "When using API keys, the principal must be authenticated by other means."
Can you try setting the following in the headers as mentioned in the "try this API -> credentials -> click on (?)"[4]:
```
Authorization: Bearer [YOUR_ACCESS_TOKEN]
Accept: application/json
```
where YOUR_ACCESS_TOKEN can be found using the Cloud SDK and using this command:
```
gcloud auth application-default print-access-token[3]
```