#pcpw
1 messages · Page 1 of 1 (latest)
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.
- pcpw-node-retries, 46 minutes ago, 7 messages
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
I don't think it's possible to simulate a chargeback
we have a list of test cards to simulate disputes : https://stripe.com/docs/testing?testing-method=payment-methods#disputes
I'm not quite sure why you're saying it's not possible to simulate a chargeback?
no worries, we have a lot of documentation floating around. Sometimes it's difficult to know what exists
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?