Returns (Task<IEnumerable>)
Find all Visits associated with a Visitor, can choose a time frame in particular.
| Name | Description |
|---|---|
| person | |
| page | |
| pageSize | |
| dateRangeStarting | |
| dateRangeEnding |
Example in C#
// Returns: IEnumerable<VisitInfo>
var visitInfo = await client.GetVisitsAsVisitorAsync(PersonInfo person, Int32 page, Int32 pageSize, DateTime dateRangeStarting, DateTime dateRangeEnding);
Example in CURL
curl -X GET \
https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/people/PERSON.KEY/visiting?page=0&pageSize=1000 \
-H 'Authorization: Bearer TOKEN_GOES_HERE'