SCIM API - API Services Triggered Failed

Hi all,

I really need help regarding the scim api.

The connectivity for IDM secure url is successful, however, when we try to fire the GET Identity with Roles & Entitlements service using curl command, hitting resource not found,

Fire User API with 7987 ID:

curl -k -u “spadmin:admin” https://10.22.61.87/identityiq/scim/v2/Users/7987?attributes=userName,urn:ietf:params:scim:schemas:extension:enterprise:2.0:User:manager,urn:ietf:params:scim:schemas:sailpoint:1.0:User:entitlements,urn:ietf:params:scim:schemas:sailpoint:1.0:User:roles

Response:

{“schemas”:[“urn:ietf:params:scim:api:messages:2.0:Error”],“detail”:“Resource 7987 not found.”,“status”:“404”}

In IdentityIQ 8.1+ you will need an additional lookupByName parameter to allow lookup by object name, the default is now to assume you are passing the object id.

So for example …/identityiq/scim/v2/Users/spadmin?lookupByName=true

1 Like