#pc_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/1326243290013634580
📝 Have more to share? Add more details, code, screenshots, videos, etc. below.
Hello! I think that Dashboard link got cut off or broken by our bot or Discord, can you share that again?
Also, can you tell me if you're using direct or destination charges?
I truncated the link to hide the customer’s ID
Oh, gotcha.
can you tell me the diff between direct and destination charges please ?
Our docs explain the difference here: https://docs.stripe.com/connect/charges#types
With direct charges the payment and refund objects all exist on the individual connected accounts. To access them via the API you'd need to specify the connected account ID in your request, so you would already know which account was involved.
See here for more details about making requests on connected accounts: https://docs.stripe.com/connect/authentication#stripe-account-header
You would use that technique combined with the Refund APIs, the Payment Intents APIs, etc.
So, for example, you can use the List all refunds API to list all the refunds on a particular connected account: https://docs.stripe.com/api/refunds/list
I thought I could do that, but I didn’t find the parameter for the connected account in the documentation.
there's only charge and payment_intent as parameters, but can I use account_id aswell ?