Post a corporate wallet card credential to Wavelynx for a specific person Returns (Task)
Overview of PostCorporateCardAsync goes here.
| Name | Description |
|---|---|
| walletGroup | The wallet group to post the corporate card to |
| corporateCardRequest | The corporate card request details |
Example in C#
// Returns: WalletVisitorCardResponse
var walletVisitorCardResponse = await client.PostCorporateCardAsync(WalletGroupInfo walletGroup, WalletCorporateCardRequest corporateCardRequest);
Example in CURL
curl -X POST \
https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/walletgroups/WALLETGROUP.KEY/corporate \
-H 'Authorization: Bearer TOKEN_GOES_HERE' \
-H 'Content-Type: application/json' \
-d '{
"$type": "Feenics.Keep.WebApi.Model.WalletCorporateCardRequest, Feenics.Keep.WebApi.Model",
"PersonKey": "PERSON.KEY",
"RawBadgeData": "12345678",
"NumBitsBadge": 32,
"WalletCardProfileData": {
"FirstName": "Jane",
"LastName": "Smith"
}
}'