0

i am using stripe API for payment getaway and i get charges from customer using card details , now i want to transfer some money to the customer who have card detail .

i have try one transfer that can done using bank detail but i don't want to transfer money using bank detail because all customer will charge using card detail and i want to transfer money to that same customer who charge to stripe and stripe will charge some amount to the same customer .

simple i can say i want to transfer money from stripe to customer and that customer have customer id and card id.

enter image description here

Alex
  • 818
  • 1
  • 8
  • 17
  • Your question is very broad. Give some details. What have you already write? – VolAnd Aug 08 '16 at 05:35
  • i am creating payment getaway using stripe API now i want that any customer charge money from that money transfer some money to some other customer 's card. – Alex Aug 08 '16 at 05:39
  • @Alex Have you found a solution? I'm in the same situation atm – Kek Nov 07 '21 at 19:30

1 Answers1

-3

yes, you can transfer amount to customer card using Stripe transfer. Stripe will charge few percentage of amount and do it for you. You can read more about it here

transfer api

Stripe transfer

Lav Vishwakarma
  • 1,380
  • 14
  • 22
  • i have try this stripe.transfers.create( { amount: 1000, currency: 'usd', destination: {CONNECTED_STRIPE_ACCOUNT_ID} } ); – Alex Aug 08 '16 at 06:26
  • but i don't want to use bank account i want to transfer money to my customer's card . – Alex Aug 08 '16 at 06:27
  • you are using connected stripe request. In this way you have to connect customer to your stripe account – Lav Vishwakarma Aug 08 '16 at 06:41
  • i have done it too. what is process is , first customer pay with card detail . than i want to transfer that money to other customer who is connected with stripe . but main problem is all work must be done with card detail not with bank account . – Alex Aug 08 '16 at 06:43