Not able to give access for creating Mask Configs - API Proxy Level to a custom role

Not applicable

Hi,

I was trying to assign permission for Create Mask Confings at API Proxy level to a custom role. I as able to do it for Org level Mask Configs.

Below is the JSON request I tried for the same:

{
           
   "path": "/applications/*/maskconfigs",
   "permissions": [
      "delete",
       "put",
       "get"
   ]
},
{
            
   "path": "/applications/*/maskconfigs/*",
   "permissions": [
      "delete",
      "put",
      "get"
    ]
}

But when I try to call management API it returns 403. Could someone please help me with correct path I should use?

Thanks in advance!!

1 2 207
2 REPLIES 2

@Vipul Agarwal - have you found a solution to this yet?

The correct permissions for this are:

"path": "/apiproxies/{api}/maskconfigs",
"permissions": [
   "get","put"
]


"path": "/apiproxies/{api}/maskconfigs/*",
"permissions": [
   "get","put","delete"
]