#espagnol01
1 messages · Page 1 of 1 (latest)
You could use this API endpoint and iterate to find the product you are looking for: https://stripe.com/docs/api/products/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.
No. You'll need to loop over the results and look at each Product's name: https://stripe.com/docs/api/products/object#product_object-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.
so, first I list all the products, and then I select the id of the one that matches with the name that I am looking for
got it. Thank you.
No problem
By default, only 10 results are returned: https://stripe.com/docs/api/products/list#list_products-limit
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
But you can adjust this limit