#pcpw

1 messages · Page 1 of 1 (latest)

blazing kelpBOT
#

Hello! We'll be with you shortly. 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.

wind oracle
#

I don't know off the top of my head right now, but I don't believe they are. You can test it out using the test cards

silk anvil
#

I don't think it's possible to simulate a chargeback

wind oracle
#

I'm not quite sure why you're saying it's not possible to simulate a chargeback?

silk anvil
#

Oh my bad

#

Must have missed it

wind oracle
#

no worries, we have a lot of documentation floating around. Sometimes it's difficult to know what exists

silk anvil
#

Follow up question:

https://stripe.com/docs/payments/payment-methods/connect#cloning-payment-methods

// Set your secret key. Remember to switch to your live secret key in production.
// See your keys here: https://dashboard.stripe.com/apikeys
const stripe = require('stripe')('sk_test_wU7nrJCZspk1NPDxiQgAF05q');

const paymentMethod = await stripe.paymentMethods.create({
  customer: '{{CUSTOMER_ID}}',
  payment_method: '{{PAYMENT_METHOD_ID}}',
}, {
  stripeAccount: '{{CONNECTED_ACCOUNT_ID}}',
});

In the above code snippet, is {{CUSTOMER_ID}} referring to the customer on the platform account or the connected account?