Update an existing reader Returns (Task.)
Overview of UpdateReaderAsync goes here.
| Name | Description |
|---|---|
| item | The reader information to update |
Example in C#
// Returns: nothing
await client.UpdateReaderAsync(ReaderInfo item);
Example in CURL
curl -X PUT \
https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/readers/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": "Updated Reader Name",
"InFolderKey": "INSTANCE.KEY"
}'