I am getting 503 Service Unavailable when calling https://apigee.googleapis.com/v1/organizations

I believe there was some Apigee incident today. But, this API is still breaking.

https://twitter.com/GCP_Incidents/status/1542285789559951361

Screenshot 2022-06-30 at 1.57.17 PM.png

Solved Solved
0 4 157
1 ACCEPTED SOLUTION

We're sorry about that disruption. It was due to an error on our end. We've corrected the problem. At this point GET /v1/organizations should work now. And it will return the same results as GET /v1/organizations/ .

View solution in original post

4 REPLIES 4

Thanks for the question. The 503 you see there seems unrelated but I am able to reproduce it.

curl https://apigee.googleapis.com/v1/organizations -v -H "Authorization: Bearer $TOKEN"

returns a 503 error

while the following gives you the list of all of your Apigee Orgs (note trailing slash)

curl https://apigee.googleapis.com/v1/organizations/ -v -H "Authorization: Bearer $TOKEN"

 

@strebel Thanks for the response. Till yesterday, this API was working fine. But, it stopped working suddenly today.

We have integrated Apigee APIs in our application. Are you going to support both /organizations and /organizations/ in future? What can I do at my end to resolve this issue?

We're sorry about that disruption. It was due to an error on our end. We've corrected the problem. At this point GET /v1/organizations should work now. And it will return the same results as GET /v1/organizations/ .

Thank you so much for resolving this!