Marks a user as present for muster purposes. Will mark them “InArea” if possible Returns (Task)
Overview of MarkPersonInAsync goes here.
| Name | Description |
|---|---|
| person | The person to mark as in/present |
| readerId | The key of the reader where the person is marked in |
Example in C#
// Returns: Boolean
var item = await client.MarkPersonInAsync(PersonInfo person, String readerId);
Example in CURL
curl -X POST \
https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/people/PEOPLE.KEY/markpersonin/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"
}'