This function will retrieve all people in a local area regardless of what instance they are from. Returns (Task<IEnumerable>)
Overview of GetPeopleInLocalAreaAsync goes here.
Name | Description |
---|---|
localArea |
Example in C#
// Returns: IEnumerable<PersonInfo>
var personInfo = await client.GetPeopleInLocalAreaAsync(LocalAreaInfo localArea);
Example in CURL
curl -X GET \
https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/controllers/CONTROLLER.KEY/localareas/LOCALAREA.KEY/people \
-H 'Authorization: Bearer TOKEN_GOES_HERE' \
This example shows a call to get all the people that are currently in localArea.
Example in C#
await client.GetPeopleInLocalAreaAsync(localArea);