UpdateCardholderGroupAsync

Updates an existing cardholder group. Returns (Task)

Overview of UpdateCardholderGroupAsync goes here.

Name Description
item The cardholder group information to update

Update Cardholder Group Async

Example in C#

// Returns: nothing
await client.UpdateCardholderGroupAsync(CardholderGroupInfo item);

Example in CURL



           curl -X PUT \
               https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/cardholdergroups/GROUP.KEY \
               -H 'Authorization: Bearer TOKEN_GOES_HERE' \
               -H 'Content-Type: application/json' \
               -d '{
                       "$type":"Feenics.Keep.WebApi.Model.CardholderGroupInfo, Feenics.Keep.WebApi.Model",
                       "Key":"GROUP.KEY",
                       "CommonName":"Updated_CardholderGroup",
                       "Notes":"Updated via API"
                   }'