#johnm2023_api
1 messages ¡ Page 1 of 1 (latest)
đ Welcome to your new thread!
â˛ď¸ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
âąď¸ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
đ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1389699914123968653
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- johnm2023_webhooks, 6 days ago, 3 messages
- johnm2023_webhooks, 6 days ago, 29 messages
Could you share the URL of doc you're following to update the name on customer's credit card?
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
CardUpdateParams is to update the card from Issuing product. Are you using Issuing (https://docs.stripe.com/issuing) ?
No'
Which card are you trying to update? Can you share the example ID (pm_123 or card_123), so that I can check how the card is created, and share the correct API endpoint?
This example want even compile.
CardUpdateParams params = CardUpdateParams.builder().setName("Jenny Rosen").build();
This is incorrect function to be used. CardUpdateParams can only be used for card created from Issing
setName. method not found
If you're not using Issuing, this is not the right builder to be used
CardUpdateParams is not meant for updating the card name
So... If I want to update lets say the expiration date on a customers card ? or cvc code ?
It should be this: https://docs.stripe.com/api/payment_methods/update
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
The name can be updated under billing_details.name: https://docs.stripe.com/api/payment_methods/update#update_payment_method-billing_details-name
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Expiry date can updated under card hash: https://docs.stripe.com/api/payment_methods/update#update_payment_method-card
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Stripe doesn't store CVC, so CVC can't be updated
Ok... I will give that a try