Identitynow Search

Hi Experts,

I’m trying to export the Identities, events, Account activity from Search , But it is giving me the huge data, Is there any filter I can use to search only the Events , Account activity that happened between the particular dates.

If you look in the search api documentation, there is an example with range on there that should help you to do this: Search | SailPoint Developer Community

Here is an example search to find all identities in a source and restricted by created date:

{
  "indices": [
    "identities"
  ],
  "query": {
    "query": "source.id:2c91338375bde8030175e1f6c74d680d",
    "fields": [
      "name"
    ]
  },
  "filters": {
      "created": {
          "type": "RANGE",
          "range": {
              "lower": {
                  "value": "2022-05-17T19:27:41.959Z"
              },
              "upper": {
                  "value": "2022-07-17T19:27:41.959Z"
              }
          }
      }
  }
}
1 Like

You can also do this via the UI by adding a date range on the created field.

created:["2022-06-23" TO now]

See the search documentation for more information on range queries.

2 Likes

@colin_mckibben Thankyou, It Worked.