#hickorydickorydock_code
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/1436336767811977367
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- hickorydickorydock_code, 1 day ago, 14 messages
๐ happy to help
if you're passing the custom terms you need to fully pass what you need to be shown
we don't have an interpolation feature to inject the business name
thanks Tarzan! appreciate you taking a look. since I can't customize the terms that are shown, I can only hide them altogether and manually show them when appropriate. but I'm hoping to be able to get the business name from the payment element
๐ Yeah, I don't think that's possible, you would need to pass whatever you want to be shown to your custom terms element
ah, too bad. do you know off-hand whether that's visible/accessible server-side?
This is the business name as it relates to the merchant?
I think so? whatever populates into the language
By providing your card information, you allow $ORGANIZATION to charge your card for future payments in accordance with their terms.
something is populating $ORGANIZATION on the front end, I'd imagine, I just can't hook into it as you say. but if I could get it from the server side, that's good enough for my purposes
Ah yes. Let me check if this retrievable independently
thank you!
From my tests, it looks like the value shown in the default terms messaging is the same as this parameter on the Account object: https://docs.stripe.com/api/accounts/object#account_object-settings-dashboard-display_name, so you should be able to retrieve this server side with a GET /v1/account request
cool, appreciate your help today!