#a6kerim_code
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/1290673734851494011
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
Is there someone in this chat?
Hi there, can you share an example of what you are trying to achieve? Automatic from whose perspective? WHat would be the use case?
There is a slightly different question: How can I insert my JS code on the payment link page?
What do you mean exactly? On Stripe-hosted pages you cannot include any custom code. On your own pages you can include whatever you want, more or less.
ok
Okay, good. Then I have another question: I have created a large catalog of online products by subscription. Please tell me, how can I generate a payment link NOT in Stripe, but on the side of my CRM?
Perhaps I can integrate Stripe somehow?
how can I generate a payment link NOT in Stripe
I can't tell you about how other services work. If you want to create stripe payment links, you have to do that via Stripe, either using the Dashboard or API.
If you control the CRM, you can likely integrate with the Payment Links API, if thats what you mean:
https://docs.stripe.com/payment-links/api
https://docs.stripe.com/api/payment-link/create
- Can I create products using the API?
- Can I create payment links without products?
thx
Hi there ๐ jumping in as my teammate needs to step away. Yes, you can create Products using our API:
https://docs.stripe.com/api/products/create
No, you can't create a Payment Link without a Price, and you need to create a Product in order to create a Price:
https://docs.stripe.com/api/payment-link/create#create_payment_link-line_items-price
https://docs.stripe.com/api/prices/create#create_price-product (you can use product_data to create a Product adhoc though)
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.