Get Access profiles by application

Hello,

Is there a way to get all the access profiles for an application?
Can’t seem to find a way with the API.

list-access-profiles | SailPoint Developer Community

You can use below CC API

https://tenant.api.identitynow.com/cc/api/app/getAccessProfiles/appId

It looks like that /cc endpoint is set to be deprecated on 11/01/2024. The v2024 replacement is /v2024/source-apps/:id/access-profiles.

2 Likes

I do this with /v3/search

POST /v3/search

{
    "indices": ["accessprofiles"],
    "sort": ["+name"],
    "query": {
        "query": "name:* AND source.name:mySource"
    },
    "queryResultFilter": {
        "includes": []
    }
}
1 Like