Please consider addressing the following when creating your topic:
-
What have you tried?
–>I tried creating Access Profiles using the API through Postman. Currently, I am able to create a single access profile using the API request, but I am looking for a way to create multiple access profiles at once (bulk creation). -
What errors did you face (share screenshots)?
–>I did not receive any specific error while creating a single access profile. However, I could not find an option or API endpoint that allows bulk creation of multiple access profiles in one request through Postman. -
Share the details of your efforts (code / search query, workflow json etc.)?
–>I used the Access Profile creation API in Postman and passed the required JSON payload to create an access profile.{
“name”: “Test Access Profile”,
“description”: “Access profile created via API”,
“enabled”: true
}
This successfully creates one access profile, but I could not find a way to pass multiple profiles in the same request. -
What is the result you are getting and what were you expecting?
–>The API successfully creates only one access profile per request.
I would like to know if there is a way to create multiple access profiles in bulk using Postman or SailPoint APIs, instead of creating them one by one.