Accepting credit cards, warehouses, and shipping and fulfilling orders
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hi,
We have a retail store where customers can purchase physical plastic gift cards that we have sourced for use in our physical store at the POS register. We also have an online store. How can we get Shopify to accept these physical card details so customers can use for online orders?
The only way I think you can make it work is by creating these physical gift cards in the Shopify store using API when they are issued at the physical store, with the code that's on the physical card. It likely also would need to be assigned to the customer, but not sure if that's a must.
Have a look at the gift card API Gift Card (shopify.dev)
Create a gift card with a custom code
POST /admin/api/2021-07/gift_cards.json
{
"gift_card": {
"note": "This is a note",
"initial_value": 100.0,
"code": "ABCD EFGH IJKL MNOP",
"template_suffix": "gift_cards.birthday.liquid"
}
}
Hope this helps