It takes two requests to create a customer or card, with the current php library.
This is what the documents show on how to create a Customer
$marketplace = Balanced\Marketplace::mine();
$customer = $marketplace->customers->create($params);
This takes two requests, and it is extremely slow to fetch the marketplace. It's taking almost 6 seconds.
But when I switch to CURL I see that I can create a customer with one request.
So, how do I create a customer with one request?