#Mister
1 messages · Page 1 of 1 (latest)
Well generated you'd just use the src_xxx ID to attach the card to a Customer: https://stripe.com/docs/api/sources/attach
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
hmm I cannot because all I have is card_id
https://share.getcloudapp.com/xQuRnelD
What exactly are you trying to do?
If the card_xxx is already attached to a Customer, then it can't be re-attached to another no
Context: Our old billing platform (ChargeOver) was creating payments without creating customers in Stripe, We moved our billing to Chargify and now we cannot use the payment method of our existing customers unless they go in and add in their card again.
So I'm trying to see if I can create a customer and attach the card to that customer so they don't need to add their card
No, you'll need to recollect the payment details from your customers. Alternatively, you should speak to our migrations team about migrating your PAN data from ChargeOver: https://stripe.com/docs/account/data-migrations/pan-import
hmm ChargeOver was using Stripe and I don't understand why do I need to do an import if all the details are already in Stripe?
Ah, I assuem they were also a processor
But no, you can't attach card details from past payments to a new Customer object
hmm interesting can I not attach a fingerprint to a new customer object?
Your support team says it's possible?
https://share.getcloudapp.com/L1uDNxd2
Sorry I'm little bit confused just want to figure out a way, there are 100's of subscriptions that we need to fix
Eh, that parameter doesn't exist. The link they've sent you is just a read-only field on the Card object: https://stripe.com/docs/api/cards/object#card_object-fingerprint
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
What you want to do isn't possible I'm afraid. Apologies that you were advised otherwise
You'll need to collect payment details from your customer's again, using Setup Intents: https://stripe.com/docs/payments/save-and-reuse
hmm interesting, there is no way for stripe to use the card object and assign it to a customer?
There is not