Hello,
I have a requirement where i need to give KVM permissions to a role.
users in this role should be able to edit and delete entries in particular kvm’s which are owned by them.They should also be able to delete the kvm’s.
I used below API calls but still users are not able to edit the kvm values and delete the kvm’s.
API url:https://api.enterprise.apigee.com/v1/organizations/{orgname}/userroles/{rolename}/permissions
VERB:POST
{“path” : “/environments/dev/keyvaluemaps/{kvm name}/entries/*”,“permissions” : [“get”,“put”,“delete”]}
{“path” : “/environments/dev/keyvaluemaps/{kvm name}/*”,“permissions” : [“get”,“put”,“delete”]}
If below path is used,
{“path” : “/environments/dev/keyvaluemaps/*”,“permissions” : [“get”,“put”,“delete”]},users get to edit or delete all kvm’s which are not owned by them.