Creates a new cardholder group in the specified folder. Returns (Task)
Overview of AddCardholderGroupAsync goes here.
| Name | Description |
|---|---|
| folder | The folder where the cardholder group will be created |
| item | The cardholder group information to create |
Example in C#
// Returns: CardholderGroupInfo
var cardholderGroupInfo = await client.AddCardholderGroupAsync(FolderInfo folder, CardholderGroupInfo item);
Example in CURL
curl -X POST \
https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/cardholdergroups \
-H 'Authorization: Bearer TOKEN_GOES_HERE' \
-H 'Content-Type: application/json' \
-d '{
"$type":"Feenics.Keep.WebApi.Model.CardholderGroupInfo, Feenics.Keep.WebApi.Model",
"CommonName":"CardholderGroup_for_cURL",
"Notes":"Created via API"
}'