We are currently developing against IIQ 8.1. We have a custom developed password validator/interceptor and want to call the SailPoint password interceptor rest service api to kick off the work flow inside of SailPoint. I found the following example:
POST http://xyzcorp.com/identityiq/rest/passwordIntercept
“application”:“Active Directory”,
“identity”:“cn=Alan.Bradley,dc=example,dc=com”,
“password”:“P@ssw0rd”
However, when I call it with the correct variables in our environment using postman with authentication, I am receiving a 405 - method not allowed.
Is the rest api still valid in 8.1 or is there another method that should be used. I can only find scim api references here on the developer site. Thanks in advance for any help.
Have you tried calling the API to launch a Workflow and simply pass in the name of the Workflow and the application, identity and password as attributes?
We have not gone that route yet. It might be what we have to do so will try that next. Since the rest API was there, we were hoping to use that. Thank you for help.