#harman0010
1 messages · Page 1 of 1 (latest)
👋 happy to help
Can you please guide me with the following
Application Concept/Payment Gateway Requirement
The application basically provides a platform to the employers to do small handymen jobs. The employers hires employee. While hiring, employer pay the amount. Once employee done his job, i want the funds to be transferred to the employee and some part of it should goes to another account as the application fees.
- I have gone through the documents and based on that i found that i should the following document as per my requirements that were discussed with you. Please let me know if I am on the right track.
https://stripe.com/docs/connect/separate-charges-and-transfers
There is no escrow means, the funds will be transferred in one go. So, Can i use the following code to transfer the funds after 3 days?
$stripe->transfers->create([
'amount' => 7000,
'currency' => 'usd',
'destination' => '{{CONNECTED_STRIPE_ACCOUNT_ID}}',
'transfer_group' => 'ORDER10',
]);Is there any max or min limit that funds can be transferred only after certain days?
can you tell me which API I need to use to connect the stripe account or it will be a manaul process ?
Can we get some demo video that shows how to connect the stripe account?
As per my understanding, whenever we make a payment through a card, stripe generates a token which we use further while making payments.
Example Method
$stripe = new \Stripe\StripeClient('sk_test_4eC39HqLyjWDarjtT1zdp7dc');
$stripe->charges->create([
'amount' => 2000,
'currency' => 'usd',
'source' => 'tok_visa',
'description' => 'My First Test Charge (created for API docs at https://www.stripe.com/docs/api)',
]);However, i don't see the token here in the following mehod. Can you please elaborate?
Example Method$stripe->paymentIntents->create([
'amount' => 10000,
'currency' => 'usd',
'transfer_group' => 'ORDER10',
]);
taking a look
Okay
If you want to transfer after the payment with x days then yes you would need to use separate Charges and Transfers doc
in order to transfer the funds to the Connected account, the code you copied is correct
bear in mind that you need to have in your available balance the amount
Okay
In the payment intent api how we can pass the source token of the card?
As mention in the above example.
- Is there any max or min limit that funds can be transferred only after certain days?
this is also about transfer availability
- can you tell me which API I need to use to connect the stripe account or it will be a manaul process ?
I'm not sure I understand the question
Charges is a deprecated way of accepting payments
for the new implementation
How we can connect the stripe accounts i.e from where we can get the stripe_connected_id ?
Is this is manual process or we can do through api also ?
it depends whether you're creating Stripe Accounts
or connecting to existing Standard Accounts
Can you share any video or document from where this will be more clear.