#smock_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/1270529789404512329
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hi there
hi
description that appears on a transaction
Appears where exactly?
so if you go to the stripe dashboard and select "transactions" from the left-hand menu - the description that appears against each transaction there (which I beleive is a list of payment intents)
this data gets sent to Xero for our accounting, so we are looking for a way to distinguish these transactions
screenshot of where I am looking, just avoided the actual data so i dont post anything sensitive
is this just something we have to do after we raise the invoice?
e.g. raise the invoice, then update the payment intent?
which i guess would have to be after payment is taken
taking a look, gimme a while
thanks
so the description on that page is synced to the PaymentIntent. A non-zero Invoice which a customer has made payment for, would have a PaymentIntent associated with it : https://docs.stripe.com/api/invoices/object#invoice_object-payment_intent. You would want to update the description on the corresponding PaymentIntent : https://docs.stripe.com/api/payment_intents/object#payment_intent_object-description
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
ah okay, so once payment is taken, handle that and then update the payment intent essentially
yep! try it out and let us know if you're still running into issues