API to Disable All Requests Center

I am attempting to disable the Access Requests Center Applications feature to prevent confusion with our end users. I found the below article however I receive a 403 error when executing and curious if this is out of date as the last update I see back in 2017.

curl --location --request POST ‘https://[tenant].api.identitynow.com/v2/apps/bulk-update?all=true’
–header ‘Content-Type: application/json’
–header 'Authorization: Bearer
–data-raw ‘{
“launchpadEnabled”: false
}’

https://community.sailpoint.com/t5/IdentityNow-Articles/API-to-Bulk-Enable-Disable-All-Request-Center-Applications/ta-p/75125

The 403 Forbidden means you don’t have the necessary permissions to invoke that endpoint. I am an admin in my tenant and I can invoke it successfully. What user level is your user?

Thank you. I was able to successfully execute. Originally I selected duplicate window to determine access token to be used for postman but it didn’t authenticate me as admin and just a standard user. Once I ensured I was admin, this worked without issue.

If you don’t mind sharing, what was the solution? It might help future viewers of this topic.