#Deeptanshu
1 messages · Page 1 of 1 (latest)
Hi there, can you share with a screenshot of the checkout page and highlight the content that you wish to remove?
Can you also share with me the checkout session ID?
Salesforce customer: 0065j00000ttgJ5AAI , Invoice: a1j5j000000DAOTAA4, Opportunity: 0015j00000u9lwhAAA
This is the payment link that got created
OK, these are the description of the product that you specify in https://dashboard.stripe.com/products/prod_N462s2UWmaMgiu
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
yeah...but we are using that to store some data that we need for our internal use not want to display it to the customers...
Actually we want to store this data in Payment Object not product....how can we do that???
If they are for internal use, you can set them to metadata.
You can listen to checkout.completed webhook events and programmatically set the metadata to the checkout session's payment_intent object.
okay....we can not add this data when we are creating the intent??
Or you can use CheckoutSessions API, which allows you to specify the PaymentIntent's metadata when creating a Checkout Session (https://stripe.com/docs/api/checkout/sessions/create#create_checkout_session-payment_intent_data-metadata)
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Ok cool...thanks