Adds an access right entry to a cardholder group. Returns (Task)
Overview of AddCardholderGroupAccessRightItemAsync goes here.
| Name | Description |
|---|---|
| cardholderGroup | The cardholder group to add the access right to |
| entryItem | The access right entry information to add |
Example in C#
// Returns: nothing
await client.AddCardholderGroupAccessRightItemAsync(CardholderGroupInfo cardholderGroup, CardholderGroupAccessRightItem entryItem);
Example in CURL
curl -X POST \
https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/cardholdergroups/GROUP.KEY/accessrightentries \
-H 'Authorization: Bearer TOKEN_GOES_HERE' \
-H 'Content-Type: application/json' \
-d '{
"$type":"Feenics.Keep.WebApi.Model.CardholderGroupAccessRightItem, Feenics.Keep.WebApi.Model",
"AccessLevelKey":"AL.KEY",
"ScheduleKey":"SCHEDULE.KEY"
}'