GetPersonByEmailAsync

Gets a person by their email address. Returns null if no person is found. Returns (Task)

Find the Person in the designated Folder that has a particular email.

Name Description
folder The folder to search for the person
email The email address of the person to retrieve

Get Person By Email Async

Example in C#

// Returns: PersonInfo
var personInfo = await client.GetPersonByEmailAsync(FolderInfo folder, String email);

Example in CURL



           curl -X GET \
               https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/people?email=Support%40Feenics.com \
               -H 'Authorization: Bearer TOKEN_GOES_HERE'