#mcbiz_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/1273320324108390511
📝 Have more to share? Add more details, code, screenshots, videos, etc. below.
When you say "text that was left in an internal note" what do you mean? Are you referring to notes made in the Stripe Dashoard? Or something else?
When looking at a specific invoice, you can click the three dots on the top right. You can then click “change status of invoice”. Within that, you can change the status, but there is also an area to “Add internal note”. It’s that note that I wish to retrieve with the API
Unfortunately you can't. Those notes are for internal use in the Stripe Dashboard only, so they don't get surfaced in the API.
If you want to add notes to the Invoice, such that you can access them in the API, I would recommend using metadata: https://docs.stripe.com/api/invoices/update#update_invoice-metadata
Ok, that makes sense, thanks!