MarkPersonOutAsync

Marks a user out for muster purposes. Will remove them from “InArea” if possible Returns (Task)

Overview of MarkPersonOutAsync goes here.

Name Description
person The person to mark as out/absent
readerId The key of the reader where the person is marked out

Mark Person Out Async

Example in C#

// Returns: Boolean
var item = await client.MarkPersonOutAsync(PersonInfo person, String readerId);

Example in CURL



           curl -X POST \
               https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/people/PEOPLE.KEY/markpersonout/READER.KEY \
               -H 'Authorization: Bearer TOKEN_GOES_HERE' \
               -H 'Content-Type: application/json' \
               -d '{
                       "$type":"Feenics.Keep.WebApi.Model.ReaderInfo, Feenics.Keep.WebApi.Model",
                       "Key":"READER.KEY",
                       "CommonName":"READER_NAME"
                   }'