Team,
I am creating an automation to bulk upload access profile to an application. I am looking for API’s which do the below
Create an application and assign a source
Add Access profiles created to the application
Enable application for Request by users.
If any leads please do let me know.
Thanks
1 Like
Shanmukh
(Shanmukh Gali)
August 1, 2023, 6:00pm
2
Hi @PratithShetty ,
Currently, there are only “cc” API endpoints to create and update application. Below are the API endpoints for your requirement:
Create an application:
{
"name" : "<<App_name>>",
"description" : "<<App_description>>"
}
* Once app is created, save the application id received in the response
Assign source, add access profiles and enable application for request:
{
"accountServiceId": "<<source_cloudexternalId>>",
"launchpadEnabled": "true",
"provisionRequestEnabled": "true",
"accountServiceMatchAllAccounts":"true",
"accessProfileIds": ["Access_Profile1_Id","Access_Profile2_Id",..."Access_Profilen_Id"]
}
To assign source to app, make a get source API call and save the value in “cloudExternalId” and place that value in “accountServiceId” attribute in the above update app json body
Thank you.
Regards,
Shanmukh
6 Likes
system
(system)
Closed
September 30, 2023, 6:39pm
4
This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.