Hi @Ramamohan,
Welcome to Developer community!
You can use API to export access profile.
- Use the export-sp-config | SailPoint Developer Community endpoint to initiate the configuration export.
{
"description": "Export all available access profile",
"excludeTypes": [],
"includeTypes": [
"ACCESS_PROFILE"
],
"objectOptions": {
"ACCESS": {
"includedIds": [],
"includedNames": []
}
}
}
includedIds
or includedNames
any one of this an be given to get a specific access profile
- Use this get-sp-config-export-status | SailPoint Developer Community endpoint to check the status of export job.
You will need to provide thejobId
from the last step in the URL of this endpoint. API response should return status ascompleted
. - use this https://developer.sailpoint.com/idn/api/beta/get-sp-config-export endpoint to download the results.
You will need to provide thejobId
from the last step in the URL of this endpoint.
Thanks!!
1 Like
I will try for this.
Thank you!
Hi @Ramamohan
You can use the API to retrieve bulk access profiles
GET
https://sailpoint.api.identitynow.com/v2024/access-profiles
Get more details at: list-access-profiles | SailPoint Developer Community