Stripe is charging only 1% of the amount - test mode - stripe-payments

I am implementing Stripe connect to charge a customer and then transfer commission to another associated account but I am stuck at the first step.
I have successfully taken card details of the customer and using stripe.js, I have tokenized it and then exchanged that token for a customer id which I saved in my DB.
Now for charging I am using:
$charge = \Stripe\Charge::create([
"amount" => 774,
"currency" => "usd",
"customer" => $customerId,
"transfer_group" => $uniqueTransferString
]);
Now that actually makes payment of $7.74 instead of $774.00 and I have no idea why. Of course I am using everything in test mode.
The card I used to create the customer at the first place was: 4242 4242 4242 4242
I have tried to give charge amount as: 1000, 774.00 etc but every time it only charges 1% of the given amount.
I have searched but couldn't find help anywhere as if why is this happening.
Please help. Any push in the right direction is appreciated.

Stripe always work in a currencys lowest amount. So in dollars that would be cents.
That mean to charge f.ex 1$ you need to multiply it by 100. This gives you 100 which is the amount you pass to stripe.
In your case to charge 774$ you would need to pass 77400 in stripes amount field

Related

How to recoup Stripes $2 per month active fee from small transfer amounts to custom Connect accounts

I'm using separate charges and transfers with Stripe Connect accounts.
So, if I create a transfer of $1.00 to a Connect account, Stripe is going to charge my platform(me) $2.00/month + % fees + $0.25/payout for that active account according to their Connect pricing page
Question - Is there any way to charge the Connect account or pass that $2.00/month active fee onto the Connect account, so my platform doesn't have to pay it? ex. Direct charge, negative balance, invoice, debit custom account, etc. Or is there a way to see the total pending balance that will be sent out to the Connect bank account and "take back" some of it before it gets delivered?
Concern and/or Challenge - When I issue a transfer, I won't have any problems recouping funds (my 5% fees, Stripe's Connect fees 0.25%) from my customers Connect accounts. I won't go into the math explicitly, unless you ask, but I will remove all fees from the transfer before it's sent, then check via "TransferGroup" to look and see if any transfers have been made to the Connect account for that pay period (1/month) and if no transfers have been created yet, I will deduct on another $0.25/payout to be withheld. BUT now I have to do something similar to collect/recoup the Stripe $2.00/month flat rate per active account and this is where my problem arrises. My transfers might all be for $1.00 each! Ex. $1.00x100. So I can't simply deduct $2.00 from a $1.00 transfer to collect this fee.
My idea - The transfers for Stripe are coming from a tipping mechanism I've implemented between students and instructors on my site/app. The students can tip $1,2,3,4,...N tips. I can do a check to see if any tips have been sent for the month and if it's the first tip, force a minimum tip amount of $3.00, for each additional tip a student wants to send, it will only be $1.00. So the first student to send a tip gets forced into a min. $3.00 tip.
Another idea - Check each transfer amount to see if it's >= $3.00, if true, I can take all fees including the $2.00 account fee and still be in the Net positive to transfer, but if this transfer group doesn't receive any $3.00+ transfers in a month, I would then track the amount owed/not collected ($2.00) and try and collect it next month. This might work but seems like a sub par solution. Maybe there's a better way?
Another idea - Allow the Connect account to go into a negative balance , if I had to take $2.00 + $0.25 + %fees out of the first $1.00 transfer. I don't know if this is a good idea or how it would work exactly.
Another idea - I was looking to see if Stripe has a way to look at the total pending balance that will be transferred out to the bank account before the end of the pay period and somehow deduct the $2.00 from the total? I see there is a way to debit accounts, but there are lots of restrictions so I don't think it will work for my scenario (lots of international accounts).
Another idea - Debit custom accounts seems reasonable but it has too many restrictions ex. doesn't work for international accounts.
Another idea - I was looking at Direct Charges where it looks like I can charge a Connect account, but looking at this code, it only creates a "Request". How does it get me the money? Is it automatically sent from the Connect account to me(platform)? What happens if I only transfer $1.00 to a Connect account for a payout, but then send a "Request" for $2.00, does the Connect account go into some negative balance?
var service = new PaymentIntentService();
var createOptions = new PaymentIntentCreateOptions
{
PaymentMethodTypes = new List<string>
{
"card",
},
Amount = 2000,
Currency = "usd",
};
var requestOptions = new RequestOptions();
requestOptions.StripeAccount = "{{CONNECTED_STRIPE_ACCOUNT_ID}}";
service.Create(createOptions, requestOptions);
Stripe only charges the $2.00 fee on active Connect accounts - i.e. ones that you either transfer money to or customers do direct charges to. As such, there is always a monetary transaction before the Stripe Connect charges are accumulated.
In your case (and mine, actually) you are using separate charges and transfers - so withhold an amount equal to the $2.00 charge the first time you transfer to an account each month (a little bit of database/bookkeeping), as well as a "guess" at the payout charges as well (a "guess" because you know when you transferred money, but don't necessarily know how they will be combined into payouts).
2022-01-20
Pseudo-code:
//if using multiple charges to a single vendor
=> collect charges filtered by transfer_group, summing available, pending, fees, then net as AVAILABLE
=> collect existing transfers by transfer_group, summing amounts as ALREADY_TRANSFERED, and gathering transfer Id's
=> we'll use AVAILABLE_TO_TRANSFER = AVAILABLE - ALREADY_TRANSFERED
=> check Connect Account receipt records (your database) for previous transfers in this calendar month (I did mention bookkeeping)
=> if there are no other receipts, then what we'll set BASE = CONNECTED_ACTIVE (currently $2)
=> the amount we will transfer is the AVAILABLE_TO_TRANSFER less reserved fees
=> We know the potential Payout fees will be based on the amount actually transferred (might be less if transfers are collected into a single payout - remember I said pessimistic)
=> The Payout Fee (which we will save as RESERVE) will be based on the actual transfer, FEE = BASE + PER_PAYOUT + PAYOUT_RATE*PAYOUT, with the pessimistic assumption PAYOUT = TRANSFER. PER_PAYOUT is currently $0.25 and PAYOUT_RATE is currently 0.25%.
PLEASE PLEASE PLEASE put the actual values in a database somewhere and use variables to pass into the formula - that way you can easily maintain your code.
=> So now we know AVAILABLE_TO_TRANSFER, and we know that TRANSFER = AVAILABLE_TO_TRANSFER - RESERVE, and we know that RESERVE = BASE + PER_PAYOUT + PAYOUT_RATE*TRANSFER
=> a half-page of algebra, and we can get
RESERVE = (AVAILABLE_TO_TRANSFER*PAYOUT_RATE + (BASE + PER_PAYOUT))/(1 + PAYOUT_RATE)
and
TRANSFER = AVAILABLE_TO_TRANSFER - RESERVE
As mentioned, you do need to keep receipts in your database to know if the Active Connected Account fee needs to be collected. Keep the reserves in your platform account until the monthly Connected Account & Payout fees are charged, reconcile the # of actual payouts against the pessimistic guesses above, and you can the withdraw (payout) any excess from your platform account.
2022-01-20a
you can be even more pessimistic (by a small amount) and just use
RESERVE = BASE + PER_PAYOUT + PAYOUT_RATE*AVAILABLE_TO_TRANSFER
You'll just reserve a tiny amount more than you have to - which we are kinda already doing anyway...
BIG NOTE
This is NOT official advice from Stripe - I do not work for them. This is my approach.
You can specify an application_fee_amount to collect a fee for a Direct Charge.
With Direct Charge, the connected account will pay the Stripe fee, and you as the platform will get the application fee that you specified in the Payment Intent creation.

In stripe connect, is there any way to schedule a transfer to happen when the charged amount actually gets available in stripe account

First of all, thank you for helping me out so far.
I have one more question related to stripe transfers. So my scope is to charge a customer and then transfer a portion of money to one associated user and another portion to another user. I am using following script:
$charge = \Stripe\Charge::create([
"amount" => $cost,
"currency" => "usd",
"customer" => $customerId,
"transfer_group" => $transferGroupToken
]);
// Create a Transfer to a connected account - Area Dev (later):
$transfer = \Stripe\Transfer::create([
"amount" => $costPercentage1,
"currency" => "usd",
"destination" => $userAccountId1,
"transfer_group" => $transferGroupToken
]);
// Create a second Transfer to another connected account - Guide (later):
$transfer = \Stripe\Transfer::create([
"amount" => $costPercentage2,
"currency" => "usd",
"destination" => $userAccountId2,
"transfer_group" => $transferGroupToken
]);
Now this code works, but there is one issue.
When I charge the customer, the money does not come into stripe account right away, however the transfer does happen right away so I need to have sufficient fund in my stripe account otherwise script fails giving "Insufficient funds" error which totally makes sense.
But I would prefer a solution in which I could somehow schedule the transfer and it happens when I receive the original payment (the cost with which I charged the customer), that way I will always have sufficient fund as I only transfer a part of received cost.
Any idea how can I achieve that?
To conclude, the question is:
In stripe connect, is there any way to schedule a transfer to happen when the charged amount actually gets available in stripe account?
Thanks in advance
Maybe this could help you on your way? https://stripe.com/docs/connect/charges-transfers#transfer-availability
What is described there is basically a method where stripe takes and "schedules" the transfer to happen when the funds is in your account. This automatically creates the transfer group and is possible because when initializing you link it with the charge ID.
$transfer = \Stripe\Transfer::create([
"amount" => 1000,
"currency" => "usd",
"source_transaction" => "{CHARGE_ID}",
"destination" => "{CONNECTED_STRIPE_ACCOUNT_ID}",
]);
Stripes description of the flow when using this:
When using this parameter:
The amount of the transfer must not exceed the amount of the source charge
You may create multiple transfers with the same source_transaction, as long as the sum of the transfers doesn’t exceed the source charge
The transfer takes on the pending status of the associated charge: if the funds from the charge become available in N days, the payment that the destination Stripe account receives from the transfer also becomes available in N days
Stripe automatically creates a transfer_group for you

Stripe Connect - How to charge multiple users to 1 customer

I use Stripe Connect to charge users credit card and transfer to a customer with a commission. I'd like to implement a 'Ride-sharing' functionality type on my app. The idea is to split the amount charged among a number of N people and still transfer to one customer, i.e. a many-to-one transaction.
What is the best way to implement that ? I didn't find any tutorial or docs for many-to-one transactions (only the other way around)
One way is to create as many transfers as charges but it is not ideal for the customer because it can split the payout for one business transaction
The other way, it seems, is to use 'Creating Separate Charges and Transfers' with several charges and one transfer thanks to a transfer_group.
But when I tried :
$charge1 = \Stripe\Charge::create(array(
"amount" => 500, "currency" => "eur", "customer" => "cus_1",
"transfer_group" => "mytransfergroup_1"
));
$charge2 = \Stripe\Charge::create(array(
"amount" => 500, "currency" => "eur", "customer" => "cus_2",
"transfer_group" => "mytransfergroup_1"
));
$transfer = \Stripe\Transfer::create(array(
"amount" => 800, "currency" => "eur", "destination" => "{CONNECTED_STRIPE_ACCOUNT_ID}",
"transfer_group" => "mytransfergroup_1",
));
I got the message
"Insufficient funds in Stripe account. In test mode, you can add funds to your available balance (bypassing your pending balance) by creating a charge with 4000 0000 0000 0077 as the card number."
Ok I am on test mode but in live, should I run a cron job every day to launch the transfer of my untransfered charges, so way after the time of the transaction ?
And even if the balance is enough, I am going to transfer money from older transactions for a more recent one. The problem is when the payout is due for the older transactions, I will not have enough on my balance to payout the right amount for my old transactions.
Hope I am clear.
Thanks for your help.
According to what you've said, it sounds like using separate charges & transfers is the best choice. As explained in the documentation, with this flow your platform "can only transfer up to the platform’s available account balance". In other words, this flow is most suited for platforms that process enough transactions so that their available balance can cover the transfers they need to create. If necessary, you can pre-fund your account's balance to get started.
That said, as this is less of a technical question and more of a payment flow one, I'd recommend reaching out to Stripe's support at https://support.stripe.com/email to ask about this. They will be able to advise you on which flow would be most appropriate for your business.

Stripe charged total amount

The Stripe home dashboard (not payments, transfers, or customers but when you first login...) shows "gross volume" total which is calculated by totaling all of the successful charges together within the given time period. With the current limiting of a maximum of 100 records, this proves to be difficult when querying for several days worth of data. Meanwhile their internal dashboard endpoint does this fairly effortlessly:
https://dashboard.stripe.com/v1/charts/gross_volume?start_time=1487635200&end_time=1488239999
{
"currency": "usd",
"data": [...],
"estimated": false,
"total": 123456, //gross volume total
"unit": "day"
}
NOTE: The above endpoint is not offered in the Stripe API documents as far as I can tell. I'm looking for an alternative solution.
Is there a better / best practice to retrieve the data that's provided at this endpoint using one of the resources in the given documents?
You can use the Balance Transaction API with auto-pagination to get at all of the information.
By expanding data.source, data.source.customer and data.source.balance_transaction you will have access to all of the information that makes up that Transfer Summary Dashboard page.

Stripe payment in INR (Indian rupee) issue

I am testing stripe payment gateway. If I try to pay in INR (Indian rupee), the amount is not converting to US dollar correctly. In my code if I debug using break points I get the amount is 610 and currency code is INR but while processing the payment I get error stating :
com.stripe.exception.InvalidRequestException: Amount must convert to at least 50 cents. ₹6.10 converts to approximately $0.09.
It should be ₹610.00 but its taking ₹6.10. I am not able to figure it out why? Is this a bug in stripe?
This is not a stripe bug. It is a stripe feature. Basically this error is shown because the minimum amount required for a transaction in stripe is 50 cents. Stripe asks you to convert your amount into the lowest denomination no matter what currency type you were using. Just convert the amount in the smallest part of money. for e.g.,
In 1 rupee there is 100 paisa. So when you charge the 610 INR stripe take this as in paisa not in rupees. So you have to multiply the amount by 100, i.e., 610 * 100 (1 INR )

Resources