Not able to DELETE company detail using Apigee Management API for deleting company detail from Apigee edge when the company name has space or the company name is URL encoded. Tried using Postman, cURL and using AzDo pipeline - same behavior, read timeout.
Has anyone faced this same issue before?
Any suggestion from Google team how can I proceed in this situation.
Hello @Soma_Ghosh, welcome to the Apigee community, we saw your question and wanted to let you know we’re keeping it on our radar. We’ll also invite others in the community to pitch in and share their thoughts.
In the meantime, you’re invited to join our Community Tech Talk this Thursday, March 19! We’ll be doing a deep dive into the RFC 8628 Device Authorization Grant—perfect for anyone working with Smart TVs or AI agents.
This looks like an Apigee Edge backend/data issue, not a problem with Postman, cURL, or your pipeline.
Key points:
In Apigee monetization, company names should not contain spaces.
The UI shows a display name, but APIs use the internal company identifier.
If you’re using the display name (especially with spaces or URL encoding), DELETE can fail or hang.
What to do:
Use the exact company name/ID from the API (GET companies), not the UI label.
Ensure the company has no apps, developers, or keys attached.
If the stored name itself contains spaces, treat it as invalid backend state (not just encoding issue).
Raise a Google support ticket for manual cleanup if DELETE still times out.
Conclusion:
If both encoded and unencoded DELETE calls time out, it’s most likely a server-side issue requiring Google support intervention.
Try with %20 once:
If the company name is Acme Partners –> Acme%20Partners
But for monetization, Google’s Edge docs say company names must not contain spaces, so the safer check is to first fetch/list the company and use the exact canonical identifier returned by the API. The Edge docs also distinguish between UI-visible company info and API-managed identifiers under monetization workflows.