IdentityNow Applications - Bulk Update (remove for users)

Good afternoon Sailors,

I would like to remove all Applications listed in the Request Center from view, and disable them for users. There are over 100 applications that I would have to go through, manually disabling and removing the visibility, which is insanely tedious and time consuming. The only API information I found for applications was in a 3rd party blog utilizing a deprecated API method, and there is nothing in the V3 or Beta versions of the API documentation.

Does anyone have a solution that may help me?

Thanks,

Brennen

Hi @brennenscott,

Please use the below API

POST {{api-url}}/v2/apps/bulk-update?all=true
Body:raw
{
“launchpadEnabled”: false
}

Here is the link to the API details
https://community.sailpoint.com/t5/IdentityNow-Articles/API-to-Bulk-enable-disable-all-Request-Center-Applications/ta-p/75125

Thanks,
Sushant

1 Like

@Sushantmrj

You saved me. Thank you!