await this.stripe.charges.update(
transfer.destination_payment,
{ description: event.title },
{ stripeAccount: transfer.destination }
);
They key is to pass in the destination Stripe account as part of the header, which you can do like so in NodeJS/JavaScript.
Top comments (0)