#ducnguyenthe_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/1271005523537301607
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Can you share what kind of information you would like to retrieve? Are you a platform that is looking to retrieve information from connected account?
No, about connected account, i found the solution here https://docs.stripe.com/api/accounts
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Now i try to get information about my payment method, which i connect by key pair (secret key and public key)
i want to check if my payment method enable or not to charge
You can use List Payment Method Configurations API with secret key to find out the payment method settings on your own account: https://docs.stripe.com/api/payment_method_configurations/list
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Alternatively, you can just check in the Dashboard: https://dashboard.stripe.com/settings/payment_method
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
Oh thank you, so what field to check payment method is enable to charge ?
This is the specification of a Payment Method Config: https://docs.stripe.com/api/payment_method_configurations/object
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
You can look for the available field in each payment method
Oh i got it, thank you so much