Lets say I have a new customer who is checking out and wants to store their card for future use. If I'm reading the docs right, I need to make separate calls out to Stripe, one to create the customer with the card and another to charge the card.
Considering the endpoint for creating a charge accepts either a token or a dictionary for the card, I'm suprised the same isn't true for the customer parameter.
I have tried sending a dictionary for the customer in a create charge request to no avail.
Am I forced to make two calls? And if so does Stripe accept feature requests?