We are migrating our store to be headless (using NextJS). Our digital gift cards have a dedicated page build in liquid which shows customers their discount code on the page. This is possible because the gift card object contains the property of “code” which has the gift card discount code.
However, it seems that “code” is no longer available in the Graphql admin API and we only get “masked code” which shows the last 4 digits of the gift card code. This is a problem for us as we want the customers to be able to see the discount code in a page if, for some reason, they cannot receive the email that shows the discount code.
Hey @Nico_T , before I go too deep in to the docs here, can you clarify if you’re working with Gift cards or discount codes.
Can you also share the current details from your custom liquid page that is working so we can be sure to look at the proper values available through the storefront API?
Thanks for clarifying that you’re working with Gift Cards rather than discount codes, and for sharing your current liquid implementation.
For your headless migration, it’s important to note that the Storefront API currently doesn’t support fetching gift cards.
To handle this specific case in your headless setup, I recommend implementing URL redirects to ensure your gift card pages continue to work properly.
Documentation on that here: Redirect traffic to the Hydrogen channel
Since the gift card page is hosted on the checkout domain, the redirect theme includes a gift_card.liquid template specifically to address this current limitation.