API for get Applications and AccessProfiles

Is there an API in IdentityNow, where it lists the applications and their access profiles?

Tks

Regards

You can try using below API

list-access-profiles | SailPoint Developer Community

1 Like

Hello Sunny, I need to know in which Application the access profile is available.

I believe the only way to see this connection is to query each application individually using the v1 endpoint:
https://{instance}.identitynow.com/api/app/get/{sourceId}

And be aware that access profiles can be part of multiple applications, so you may need to query every application and not just stop after you find the first connection.

Thanks Kevin,

But I receive a error when execute a GET from:

https://xxxxxx.identitynow.com/api/app/get/189463

"msg_template": "Missing or invalid arguments: {0}",
"slpt_error_code": "SLPT-1000",
"formatted_msg": "(SLPT-1000) Missing or invalid arguments: Null Service App",

what am I doing wrong?

Regards

@ruschel

To get an app

/cc/api/app/get/{app_id}

to get access profiles for an app

/cc/api/app/getAccessProfiles/{app_id}

“getAccessProfiles” is also case-sensitive

1 Like