Add a new wallet asset to a wallet group Returns (Task)
Overview of AddWalletAssetAsync goes here.
| Name | Description |
|---|---|
| walletGroup | The wallet group to add the asset to |
| walletAsset | The wallet asset information to add |
Example in C#
// Returns: WalletAssetInfo
var walletAssetInfo = await client.AddWalletAssetAsync(WalletGroupInfo walletGroup, WalletAssetInfo walletAsset);
Example in CURL
curl -X POST \
https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/walletgroups/WALLETGROUP.KEY/assets \
-H 'Authorization: Bearer TOKEN_GOES_HERE' \
-H 'Content-Type: application/json' \
-d '{
"$type": "Feenics.Keep.WebApi.Model.WalletAssetInfo, Feenics.Keep.WebApi.Model",
"CommonName": "Logo Image"
}'