#Qualle

1 messages · Page 1 of 1 (latest)

sterile bluffBOT
cunning fractal
#

Can you elaborate? This is worded ambiguously and it's hard to know what terms like "parent account" mean

short magnet
#

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

cunning fractal
#

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

short magnet
#

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

cunning fractal
#

Okay, so you're using Connect then I assume?

short magnet
#

correct, sorry forgot to mention

cunning fractal
#

Okay, yeah, then you would just need to create a subsequent transfer to the connected account for the amount of the Payment Intent

short magnet
#

just an implicit transfer

#

and those just get picked up buy the payouts I assume

#

ok thank you