Access Request Status API

Is there OOB api for getting Access Request Status in IIQ? I need to extract the execution status.

Which IIQ version are you inquiring about?

8.3 and 8.2

@Ngozi

If you have the Identity Request ID, you can get the IdentityRequest Object using below line of code and later use that object to get the execution Status, if you are looking for a direct Rest API kind of thing, I don’t think you have it OOTB available
Assuming idenReqName as the identity Request ID you see in UI

IdentityRequest idenReq=context.getObjectByName(IdentityRequest.class,idenReqName);
String execStatus=idenReq.getExecutionStatus().toString();

Hi @Ngozi,

there is no one api for getting Access Request Status

Hi @Ngozi ,
We don’t have any API to get the Access Request in SailPoint IIQ using API. API Specifications | SailPoint Developer Community

But if you want have it. You must develop custom REST APT for that.


https://community.sailpoint.com/t5/Technical-White-Papers/IdentityIQ-REST-API-Integration/ta-p/76814

Please let me know if you need any help on developing custom REST API.

2 Likes

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.