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
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.
Please let me know if you need any help on developing custom REST API.