AttendeeStatus

Enum AttendeeStatus

These are the possible values of what an attendee’s status can be.

Name Value Description
Unconfirmed 0 The unconfirmed
Confirmed 1 Confirmed
CheckedIn 2 CheckedIn
CheckedOut 3 CheckedOut

Set Attendee Status Async

Example in C#

// Returns: nothing
await client.SetAttendeeStatusAsync(VisitInfo visit, String personKey, AttendeeStatus status);

Example in CURL



           curl -X PUT \
               https://keepapi.feenicshosting.com/api/INSTANCE.KEY/visits/VISIT.KEY/attendees/ATTENDEE.KEY/status \
               -H 'Authorization: Bearer TOKEN_GOES_HERE' \
               -H 'Content-Type: application/json' \
               -D '"Unconfirmed"'