How to export and import the access profiles(bulk) from IDN

Problem How to export and import the access profiles(bulk) from SailPoint IDN

Hi @Ramamohan,

Welcome to Developer community!

You can use API to export access profile.

  1. 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

  1. Use this get-sp-config-export-status | SailPoint Developer Community endpoint to check the status of export job.
    You will need to provide the jobId from the last step in the URL of this endpoint. API response should return status as completed.
  2. use this https://developer.sailpoint.com/idn/api/beta/get-sp-config-export endpoint to download the results.
    You will need to provide the jobId 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