running
Gets the ACLs that control who can manage the running environments belonging to the given owner
get/running/{owner}/acls
Path parameters
ownerstring required
The username of the user whose resources that you wish to access
Response
ACLs for the given owners running environments
Example response
{
"read": {
"allowed": [
"aaron",
"*"
],
"forbidden": [
"danielle"
]
},
"write": {
"allowed": [
"bob",
"cindy"
],
"forbidden": [
"danielle",
"eve"
]
},
"admin": {
"allowed": [
"bob"
]
}
}