#Qualle
1 messages · Page 1 of 1 (latest)
Can you elaborate? This is worded ambiguously and it's hard to know what terms like "parent account" mean
our organization stripe account
the stripe account we created which contains all of our customers
simply, is there an api we can charge ourself for a customer charge, similar to a "credit" system, giving customers credits up until a certain limit is reached
const payment = await stripe.paymentIntents.create(
{
amount,
currency,
customer,
payment_method,
off_session: false,
save_payment_method: true,
confirm: true,
confirmation_method: 'manual',
metadata,
...(destination && {
application_fee_amount,
transfer_data: {
destination,
},
}),
},
{ idempotencyKey }
);
maybe for customer we can just add our own customer id for our account
but I thought there might be something under balance for our stripe account
Ahhh, okay. So we don't have the option for pulling from your balance to pay (since it would just go right back into your balance), but you can simply cancel the Payment Intent or use a coupon for 100% off
a coupon!
ok
but this is a transfer payment, meaning the money still has to go to the seller
its a marketplace
but in that case, we would just need a balance in our account to handle payout
hmm
Okay, so you're using Connect then I assume?
correct, sorry forgot to mention
Okay, yeah, then you would just need to create a subsequent transfer to the connected account for the amount of the Payment Intent