GetPersonByActiveCardRecordAsync

Get a person by their active card record ID. Returns null if no person is found. Returns (Task)

Find the Person in the designated Folder that has a particular card record.

Name Description
folder The folder to search for the person
recordId The record ID of the active card assignment

Get Person By Active Card Record Async

Example in C#

// Returns: PersonInfo
var personInfo = await client.GetPersonByActiveCardRecordAsync(FolderInfo folder, Int32 recordId);

Example in CURL



           curl -X GET \
               https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/people?recordId=RECORD_ID \
               -H 'Authorization: Bearer TOKEN_GOES_HERE'