API to bring emails from identities

Is there any API to search for the emails of the identities we have at ISC?

To integrate to search for people’s emails and take them to an application.

Hey @kaiolima , how are you ?:

there is , the V3/search can be used to achieve yur requirement.

you just need to have a payload like this :

{
    "query": {
    "query": "*"
    },
    "indices": [
        "identities"
            ],
    "includeNested": true,    
    "queryResultFilter": {
        "includes": [
            "email"
             
        ]
    }

}

Hope this helps.

3 Likes

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.