Quota Revoke

haider_imran
Participant III

On Apigee Edge, after revoking a Developer App, the developer was still able to perform API calls for a few seconds, any way to revoke immidiately ?

0 1 267
1 REPLY 1

haider_imran
Participant III

I tried this and it helped

First of all = Revoke App from Admin portal and then Check Status of app through this command:

curl -X GET -u <Admin-username>:<Password> "https://10.1.24.13:8080/v1/organizations/tp/developers/{Developer-email Or ID}/apps/{App-Name}"

If Status is still Approved, then revoke app through this command:


curl -X POST --header "Content-Type: application/octet-stream" -u <Admin-username>:<Password> "https://10.1.24.13:8080/v1/

organizations/tp/developers/{developer-email}/apps/{app-name}?action=revoke"


How It Works

Sometimes APP is not revoked at management server immediately when you approve and revoke it repeatedly. If you want to revoke APP immediately, you'll have to make sure that app is revoked at management server.

If app is still approved on management server, then you'll be revoking it through management API.