#borja-snchez_api
1 messages ยท Page 1 of 1 (latest)
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.
- borja-snchez_connect-charges, 4 days ago, 43 messages
๐ 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/1242107334059360446
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hello, I've created this coupon:
evt_1PIVar2eCkIhIZ06JYUDaYt8
And I would like to created on the connected account that I pass through the api on Create Coupons.
Is that possible ?
Can a coupon belong to an connected account ?
I cannot find my coupon on the connected account.
Hi there ๐ that Coupon was created on a Connected Account, though that may not be recommended since you're working with Express accounts here. Can you elaborate on how you tried to find the Coupon after you created it, which wasn't successful?
I don't know how to find it on my dashboard
I supoosed that I had to use the connected account dashaboard
You won't find it on your dashboard, it doesn't exist in your account.
Then where can i find it ?
You might be able to see it if you view the dashboard as your Connected Account, but I'm not entirely certain on that since Express Connected Accounts don't get full dashboard access and we're not too familiar with the dashboard in this forum.
We primarily focus on helping developers work with our API, so I'd expect you to be able to find it if you listed the Coupons for your Connected Account via the api:
https://docs.stripe.com/api/coupons/list
https://docs.stripe.com/api/connected-accounts
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.
One more question.
when I created a coupon through my api I pass the connected account id ...
Why is that not recomended ?
Because you're using Express Accounts, where we recommend using Destination Charges rather than Direct Charges:
https://docs.stripe.com/connect/destination-charges
With a Destination Charge structure, all payment activity happens on the Platform Account, so objects created on the Conneted Accounts can't be used as part of the payment process.
I won't be able to use these coupons in products of my connected accounts ?
You wouldn't create Coupons or Products on the Connected Accounts, becasuse the objects you create to process the payments would be on your Platform account and won't be able to reference objects from different accounts.
So, my coupons will be on my platforms account and they won't reach the products placed at my connected accounts ?
It that right ?
products placed at my connected accounts
If you're working with Express Connected Accounts, I would not recommend creating any objects on the Connected Accounts.
Is late for that ๐คฃ
So, taking in cosideration my situation ... my coupons will be on my platforms account and they won't reach the products placed at my connected accounts ?
No, I don't know what you mean by "won't reach the products", but Coupons created on your Platform account cannot reference Products that belong to another account.
I can create Coupons through my API aiming my connected account ? Right ?
Somehow I'm doing it in my integration and I'm able to apply the coupon on my checkoutsession. .. ๐ค
Then you're probably creating the Checkout Session on the Connected Account, using a Direct Charge flow. Hard to say without any details though.