Custom permissions in Apigee using the API not working.

I'm trying to allow developers to create, list and delete only apps that start with the name apt. Example: Developer can only delete the app apt-my-app, but can't delete the app ddl-my-app. I set up the permission as follow:

{
      "organization": "my_org",
      "path": "/developers/*/apps/apt*",
      "permissions": [
        "put",
	"delete",
        "get"
      ]
    }

However this permission allows developers to only see the apps and the button to delete the app is gray out. If I try the permission below then the button to delete the app is not gray anymore and the developer can delete the apps, however the developer can delete any other app in the environment and we don't want that. Anyone could help? We're working in a big project for a big client with Apigee.

Cheers!

{
      "organization": "my_org",
      "path": "/developers/*/apps",
      "permissions": [
        "put",
        "get"
      ]
    }
0 0 80
0 REPLIES 0