|
Privacy.com gives you the ability to generate virtual credit cards.
Features: - The expiration is 6 years out, so you have a long time before you need to change it. - Once a card is used, it can only ever be used by the same company, so if it is stolen, a different company can't even charge it. - You can set limits per card. You can set a total spend amount for the life of the card, a limit per month, a limit per year, or a limit per transaction. You can change limits at any point. - You can get notifications (an email) for every charge on every virtual card. - You can get notifications (an email) whenever a charge fails, and it tells you why. - You can pause a card at any time, and un-pause it later. You can also permanently close a card. Create an account and use it, it is awesome. Powershell script manage your Privacy Cards Here is a Powershell manager for your Privacy cards. Note that you will need to request API Edit capability to create new cards or edit existing cards. https://helpfultechnotes.com/guide/397/download/Privacy-Manager.ps1 Call it with a shortcut like: Copy to Clipboard
powershell.exe -file "C:\Users\User\Documents\Privacy-Manager.ps1" -APIKey c234234-234234-234234-234234You can also save the API key to a text file and call with a helper Powershell script like: Copy to Clipboard
$env:PRIVACY_API_KEY = Get-Content "C:\Users\User\Documents\PrivacyAPI.txt"
& "C:\Users\airin\Documents\Privacy-Manager.ps1"
|