GetVisitsAsVisitorAsync

Returns (Task<IEnumerable>)

Find all Visits associated with a Visitor, can choose a time frame in particular.

Name Description
person
page
pageSize
dateRangeStarting
dateRangeEnding

Get Visits As Visitor Async

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://keepapi.feenicshosting.com/api/f/INSTANCE.KEY/people/PERSON.KEY/visiting?page=0&pageSize=1000 \
               -H 'Authorization: Bearer TOKEN_GOES_HERE'