AddWalletGroupAsync

Add a new wallet group to a folder Returns (Task)

Overview of AddWalletGroupAsync goes here.

Name Description
folder The folder to add the wallet group to
item The wallet group information to add (includes group ID, device CA key, reader ID)

Add Wallet Group Async

Example in C#

// Returns: WalletGroupInfo
var walletGroupInfo = await client.AddWalletGroupAsync(FolderInfo folder, WalletGroupInfo item);

Example in CURL



           curl -X POST \
               https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/walletgroups \
               -H 'Authorization: Bearer TOKEN_GOES_HERE' \
               -H 'Content-Type: application/json' \
               -d '{
                       "$type":"Feenics.Keep.WebApi.Model.WalletGroupInfo, Feenics.Keep.WebApi.Model",
                       "GroupId":null,
                       "DeviceCAKey":null,
                       "ExternalReaderId":"",
                       "AndroidPackageId":null,
                       "WalletAssets":[],
                       "Key":null,
                       "CommonName":"WalletGroupFor_cUrl",
                       "InFolderHref":null,
                       "InFolderKey":null,
                       "Links":[],
                       "ObjectLinks":null,
                       "Metadata":null,
                       "Notes":null,
                       "Tags":null,
                       "Monikers":null,
                       "Href":null
                   }'