The purpose of the Gift Card API is to either CREATE or READ a Gift Card resource. If you are going to use the Gift Card API as part of your website for ecommerce then you are still responsibility for the digital delivery. The API does not create emails or return barcodes. Its purpose it to create the record to say the card is valid and for the value. Making the call to the API should only be done once you have payment.
Gift Cards Assume the following:
Example URL to create a new card:
https://ZZZ.iposwarehouse.com/core/sales/cards/gift/gift_api.asp?log=XXX&pwd=YYY&qty=100&expiresyears=3
Returns:
{ "CardKey": 5, "CardCode": "GCQ22X9HE1", "CardActive": true, "SiteKey": 0, "CustomerKey": 0, "ProductKey": 0, "CardOpeningDteTme": "4/03/2019", "CardOpeningBalance": 100, "CardOpeningBalanceManual": 0, "CardBalanceDteTme": "", "CardBalance": 100, "CardExpiryDate": "4/03/2022", "CardNotes": "" }
The API can also be used to read the balance of an existing card:
https://ZZZ.iposwarehouse.com/core/sales/cards/gift/gift_api.asp?log=XXX&pwd=YYY&card=GCQ22X9HE1
Returns:
{ "CardKey": 5, "CardCode": "GCQ22X9HE1", "CardActive": true, "SiteKey": 0, "CustomerKey": 0, "ProductKey": 0, "CardOpeningDteTme": "4/03/2019", "CardOpeningBalance": 100, "CardOpeningBalanceManual": 0, "CardBalanceDteTme": "", "CardBalance": 100, "CardExpiryDate": "4/03/2022", "CardNotes": "" }
Other expiry options are expiresdays=X, expiresmonths=X, expiresyears=X, expires=date