Added
v0.0.32
4 months ago by Mikolaj Domanski
v0.0.32
New features
New query -getVirtualCardOffers:
- This query provides a comprehensive list of all active virtual card offers available for creation. Users can now discover various programs and their associated details before card issuance.
- The response includes crucial information such as
offer_id(essential for card creation),program_name,bank_name,rewardValue, and detailedprogram_limits(daily, weekly, monthly spend limits). - For example, to find out what virtual cards you can create and their benefits, you would simply query:
query GetVirtualCardOffers { getVirtualCardOffers { offerId programName bin bankName rewardValue } }
Updated mutation -createVirtualCard:
- This mutation enables the on-demand generation of new virtual cards. Users can now programmatically issue virtual cards by providing an
offerId(fromgetVirtualCardOffers), aspendLimit, and other customizable attributes likecardNickname,spendLimitDurationand other. - This allows for dynamic financial control, letting you instantly provision cards tailored to specific spending needs.
New mutation -editVirtualCard:
- Provides robust post-creation management capabilities, allowing users to update key parameters of an existing virtual card.
- You can now modify the
spendLimit,spendLimitDuration,lockDate,lockCardNextUsesetting, andcardNicknameof a virtual card, offering unparalleled flexibility.
New mutation -lockVirtualCard:
- Introduces an essential security feature, allowing users to immediately lock a virtual card. This action prevents any further transactions, providing a quick way to secure a card if it's compromised or no longer needed.
