Reputation: 6663
Is it possible to associate a one-off Stripe charge/payment with a Stripe Customer profile but not save the card to the profile? I'd really like to organize my Customers and their purchases within the Stripe dashboard, but I can't see any way to do this. From what I can tell there are three ways to create a payment:
source
parameter and no customer
parameter. The source
parameter in this instance starts with tok_
customer
parameter, which will use the default card on file.customer
and source
parameters, where source
is the card ID associated with the customer starting with card_
.I've looked through the docs and can't see anything that alludes to being able to create a payment using customer
and a tok_
source. Am I missing something here?
Upvotes: 1
Views: 602
Reputation: 25632
This is not supported by Stripe at the moment. You can still do this though with a few steps:
This ensures that you don't save the card but still have the charge associated with the right customer.
Upvotes: 1