#tom_api
1 messages ¡ Page 1 of 1 (latest)
đ Welcome to your new thread!
â˛ď¸ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
âąď¸ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
đ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1463496674465808478
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Am trying to have to avoid creating a form for address/tax and validating it ourselves, would rather use stripe elements to do this if possible?
hi there!
Howdy!
yes it should be possible using the Address Element: https://docs.stripe.com/elements/address-element
then make an API call to update the Customer object with the new address.
This is the code I'm trying:
<script>
const stripe = Stripe("<%=C3.Code.Settings.Payments.Stripe.PublishableKey%>");
const elements = stripe.elements({
appearance: {
}
});
const addressElement = elements.create("address", {
mode: "billing",
});
addressElement.mount("#address-element");
</script>
But it doesn't render anything
No errors in the logs
do you have a link where I can reproduce the issue?