IdentityNow Rest API search identity call issue 400.0 Bad request syntax

@colin_mckibben
I am making rest api call through postman but getting below error
{{api-url}}/v3/search/identities?excludeNested=false&offset=0&limit=5
“query”:“attributes.uid:ds1.user121”

Error-
{
“detailCode”: “400.0 Bad request syntax”,
“trackingId”: “e3e0014819d44e3c8685ed7201e2035b”,
“messages”: [
{
“locale”: “en-US”,
“localeOrigin”: “DEFAULT”,
“text”: “The request could not be parsed.”
}
]
}

Hi,

Please use this POST call {{api-url}}/v3/search?offset=0&limit=5 with this JSON body:

{
  "indices": [
    "identities"
  ],
  "query": {
    "query": "attributes.uid:ds1.user121"
  },
  "excludeNested": false
}

More information can be found here: Search | SailPoint Developer Community

Thanks,
Lisa Ivy

1 Like

@lisa.ivy thank you so much.it is working.

1 Like