darrenjrobinson / powershell_module_identitynow

SailPoint IdentityNow PowerShell Module
https://blog.darrenjrobinson.com/sailpoint-identitynow/
MIT License
47 stars 15 forks source link

Update Get-IdentityNowRole.ps1 #62

Open pedrolti0 opened 1 year ago

pedrolti0 commented 1 year ago

Line 89 : $count = [int] $response.Headers["X-Total-Count"][0] Count value is not correct due to the [0]

Good value with : $count = [int] $response.Headers["X-Total-Count"]