Skip to content

Instantly share code, notes, and snippets.

@KrishanMadushanka
Created September 22, 2022 07:54
Show Gist options
  • Select an option

  • Save KrishanMadushanka/81645c417a165863d25d19ac1e2893db to your computer and use it in GitHub Desktop.

Select an option

Save KrishanMadushanka/81645c417a165863d25d19ac1e2893db to your computer and use it in GitHub Desktop.
app.post("/transfer", async (req, res) => {
const transfer = await stripe.transfers.create({
amount: 2000,
currency: "sek",
destination: "CONNECTED_STRIPE_ACCOUNT_ID",
transfer_group: "your first group",
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment