#clint_api
1 messages · Page 1 of 1 (latest)
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.
- clint_api, 2 days ago, 28 messages
- clint_webhooks, 2 days ago, 23 messages
👋 Welcome to your new thread!
⏲️ We'll be here soon! We typically respond in a few minutes, but in some cases we might need a bit more time (e.g., server's busy, you've got a complex question, etc.).
⏱️ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can 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/1257240480308265021
📝 Have more to share? Add details, code, screenshots, videos, etc. below.
What do you mean by "transaction info"?
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
I will first obtain the network_data.authorization_code information.
如何查询checkout返回的信息中的ipi_1MzFN1K8F4fqH0lBmFq8CjbU id信息,进行查询?
/v1/issuing/transactions/:id
Before we go further, are you using Stripe Issuing? https://docs.stripe.com/issuing
🗣️ Sorry, English only
We can only provide help in English on Discord, but you can contact Stripe support for help in other languages. 🌐 Translate this message
How to query the id information of ipi_1MzFN1K8F4fqH0lBmFq8CjbU in the information returned by checkout?
/v1/issuing/transactions/:id
yes
Issuing and Checkout are two different products. I don't know why you want to use issuings API to get infomation about a PaymentIntent.
So this won't work, right? The PaymentIntent cannot retrieve information from the issuing bank.
However, I want to obtain the issuer information based on transaction details.
I'm still not very clear on what info you want to retrieve from a PaymentIntent. https://docs.stripe.com/api/payment_intents/object can I suggest you to go through the API reference and see if you can find the info there?
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
How to find the id for ipi_1MzFN1K8F4fqH0lBmFq8CjbU?
What do you mean by "id"? ipi_1MzFN1K8F4fqH0lBmFq8CjbU - is the ID of this Issuing Transaction object.
yes
So what are you trying to find then exactly?
PaymentIntent Query Issuing-Transactions Information
I don't understand what this means, sorry.
How can I obtain this ID: ipi_1MzFN1K8F4fqH0lBmFq8CjbU?
Depends what is your starting point. You can list all Transactions: https://docs.stripe.com/api/issuing/transactions/list
Or you can listen to webhook Event issuing_transaction.created or issuing_transaction.updated: https://docs.stripe.com/api/events/types#event_types-issuing_transaction.created
When was issuing_transaction.created? Will initiating a checkout payment create it?
It's happening when you pay with your Issuing card.
What do you mean by "checkout payment"? Stripe Checkout (Stripe-hosted checkout product) specifically, or any checkout page?
Stripe Checkout
Yes, paying on Stripe Checkout will also trigger this webhook event.
ok