Gets a person by their active card number. Returns null if no person is found. Returns (Task)
Find the Person in the designated Folder that has a particular card.
| Name | Description |
|---|---|
| folder | The folder to search for the person |
| card | The encoded card number of the active card |
Example in C#
// Returns: PersonInfo
var personInfo = await client.GetPersonByActiveCardAsync(FolderInfo folder, Int64 card);
Example in CURL
curl -X GET \
https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/people?card=CARD_NUMBER \
-H 'Authorization: Bearer TOKEN_GOES_HERE'