#carrotfertilitysupport_api

1 messages ยท Page 1 of 1 (latest)

solemn robinBOT
#

๐Ÿ‘‹ 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/1220738610823954442

๐Ÿ“ Have more to share? Add more details, code, screenshots, videos, etc. below.

cursive radish
#

Looking at the Balance Transaction API docs (here https://docs.stripe.com/api/balance_transactions) its clear there's not an update method on that object so I'm wondering if we need to pass a description through somewhere else in the payment process?

#

i.e. - could we set it on a payout? on the paymentIntent object (pi_xxx)? on the transaction object (tr_xxx or ipi_xxx)? on the charge (ch_xxx)?

#

Or, is there just no way to manually set whatever the description becomes on the eventual balance transaction object (txn_xxx) that is generated in that report for invoice payments

simple elmBOT
cursive radish
#

This is how they're currently displaying in the generated report:

hybrid spoke
#

Hi there ๐Ÿ‘‹ unfortunately my team is not familiar with where the prebuilt reports pull their data from, so I'm not exactly sure where you would need to put the description to see it appear in the report you're referring to.

You're also correct that you cannot directly set/update the description on the Balance Transaction object.

#

Can you copy paste the txn_ ID for a line where the description is populated?

#

Maybe I can spot where that's coming from

cursive radish
#

Sure thing

#

txn_1OoSjoGdfXzlrHE1tjmUhgay

#

that has the description Transferring funds from your Payments balance to your Issuing balance.

#

the reports are pulled from the Reports tab in our platform account dashboard and clicking the Download button here:

hybrid spoke
#

We can set aside where the reports are coming from, that won't help me much here.

I don't see a description existing directly on that Balance Transaction object, looking to see if it seems to be coming from a related object.

cursive radish
#

Ah okay - I'll stop blabbing about the reports then, lol.

#

If it helps, I believe that transaction object ID i sent was from our testing account

#

This is another one - txn_3OoUbjGdfXzlrHE10vcq04ti - specifically for a transaction with the reporting_category as charge (which is, I believe, how the invoice reconciliation payments show up) which shows a description of (created by Stripe CLI)

hybrid spoke
# cursive radish txn_1OoSjoGdfXzlrHE1tjmUhgay

Do you know what action you took that caused this Balance Transaction to be created? I'm not quickly spotting that and am wondering if that's because it was generated by a dashboard action.

hybrid spoke
cursive radish
hybrid spoke
#

Gotcha, that aligns with what is stored as the description on the Payment Intent that created that Balance Transaction.

cursive radish
#

Ah okay - so perhaps if we set the description on a payment intent that may output into the balance transaction description?

hybrid spoke
#

That's what I'm thinking. I'm thinking it pulls from the related object that caused the balance transaction to occur.

cursive radish
#

Ah okay great - this is super helpful. I at least have somewhere to start and begin testing a bit.

#

Thank you!