#nollix_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/1445430762202464347
đ 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.
- nollix_checkout-payment-status, 19 hours ago, 44 messages
- nollix_api, 22 hours ago, 13 messages
- nollix_webhook-events, 6 days ago, 11 messages
- nollix_checkout-webhook-events, 6 days ago, 15 messages
- nollix_webhooks, 6 days ago, 12 messages
Its the latter one, the payment succeeded but funds will settle/arrive later
If you want to know when the funds are available in your stripe account, you would need to dig into the balance transactions and availability dates included there
via latest_charge.balance_transaction using expansion
https://stripe.com/docs/expand
So you could look at available_on to know when it will move from pending to available
https://docs.stripe.com/api/balance_transactions/object?api-version=2025-11-17.clover&rds=1&lang=curl#balance_transaction_object-available_on
Note that this is different that delayed payment methods, like ACH or SEPA, which go into a processing status while the debit flow happens, and you get the succeeded event when that finishes
(days later)
It's then after success that the associated funds are pending in your balance and you can track when they will become available