Sets the attendee status for a specific attendee Returns (Task)
Adjust the status of the Attendee.
| Name | Description |
|---|---|
| visit | The visit containing the attendee |
| personKey | The attendee person key |
| status | The attendee status to set |
Example in C#
// Returns: nothing
await client.SetAttendeeStatusAsync(VisitInfo visit, String personKey, AttendeeStatus status);
Example in CURL
curl -X PUT \
https://api.us.acresecurity.cloud/api/INSTANCE.KEY/visits/VISIT.KEY/attendees/ATTENDEE.KEY/status \
-H 'Authorization: Bearer TOKEN_GOES_HERE' \
-H 'Content-Type: application/json' \
-d '"Unconfirmed"'