RemoveAttendeeFromVisitAsync

Removes an attendee from a visit Returns (Task)

Take the designated Attendee off the designated visit.

Name Description
visit The visit to remove the attendee from
personKey The attendee person key to remove

Remove Attendee From Visit Async

Example in C#

// Returns: nothing
await client.RemoveAttendeeFromVisitAsync(VisitInfo visit, String personKey);

Example in CURL



           curl -X DELETE \
               https://api.us.acresecurity.cloud/api/INSTANCE.KEY/visits/VISIT.KEY/attendees/ATTENDEE.KEY \
               -H 'Authorization: Bearer TOKEN_GOES_HERE'