#hugo-tessera_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.
- hugo-tessera_webhooks, 4 days ago, 20 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/1247372996390289428
đ Have more to share? Add details, code, screenshots, videos, etc. below.
On this picture, on the left side is the Platform account with the transfer details (with a description and metadata)
On the right side, it's the connected account dashboard with the details of the payment received from the transfer made by the pltform
As you can see, there is no description and metadata on the payment on the right side
Is there a way to edit the descirption/metadata of the payment on the right?
You'd need to update the description and metadata in the py_ object on the right manually after the transfer. Stripe doesn't populate the information from one object to another
Once the transfer is successful, the payment in py_xxx can be found in destination_payment: https://docs.stripe.com/api/transfers/object#transfer_object-destination_payment
You can then update the information in py_ object with Stripe-Account header as connected account ID: https://docs.stripe.com/api/connected-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.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Sorry, I am not sure I get it.
After having retrieved the payment from destination_payment in order to update the details, which API should i use?
The transfer API? (Update a transfer ?)
Sorry, my bad. Update Charge API should be used to update py_ object: https://docs.stripe.com/api/charges/update
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.