Delete a Wavelynx wallet credential from a person and remove it from Wavelynx Returns (Task)
Overview of DeleteWalletCredentialAsync goes here.
| Name | Description |
|---|---|
| walletGroup | The wallet group containing the credential |
| deleteRequest | The delete request details with person and card keys |
Example in C#
// Returns: nothing
await client.DeleteWalletCredentialAsync(WalletGroupInfo walletGroup, WavelynxCardDeleteRequest deleteRequest);
Example in CURL
curl -X DELETE \
https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/walletgroups/WALLETGROUP.KEY/delete-credential \
-H 'Authorization: Bearer TOKEN_GOES_HERE' \
-H 'Content-Type: application/json' \
-d '{
"$type": "Feenics.Keep.WebApi.Model.WavelynxCardDeleteRequest, Feenics.Keep.WebApi.Model",
"PersonKey": "PERSON.KEY",
"CardKey": "CARD.KEY"
}'