Darren Robinson

Results 14 comments of Darren Robinson

I've gone through and setup a new machine with the module using PowerShell 5.1. I then tested the creds using Test-IdentityNowCredentials I only set it up using a personal access...

Hi @clyates4 v1.1.6 of the module addresses this error. It is currently in this branch which you can download an manually update your environment with. https://github.com/darrenjrobinson/powershell_module_identitynow/tree/V3API-CMDLET-Options It also includes a...

I've just gone through and created a new Access Profile based off how I've always done it and it was successful. Looking at the error and your screenshots I'm thinking...

Hi David, My recommendation to get the correct syntax for your scenario is to get the search working in the IDN portal. Use F12 (browser dev tools) to look at...

This maybe associated with SailPoint AuthN API changes. Create a Personal Access Token in the Admin Portal for your account and set that in your module creds config. The module...

I’ve definitely used the module on Linux in cloud automation scenarios. However the local saving of the configuration and autoload is a Windows only feature. In cloud automation I pull...

You're best to use the Invoke-IdentityNowRequest cmdlet and target the latest APIs. You'll need to create a search query object in the new format which for your search looks like...

from one of my environments using the above. ![image](https://github.com/darrenjrobinson/powershell_module_identitynow/assets/384733/68c9f8af-8422-41f2-8580-f3ed3d98d98a)

The error indicates your JSON isn't valid. How did you generate it? As a custom PSObject and then convert? Does converting your json to a PSObject fail indicating where the...

Yes, drop the email attribute from the query then it becomes case-insensitive. ``` query : {[query, "[email protected]"]} ``` But then you will need to iterate through the results to find...