#carrotfertilitysupport_api
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/1220808378159337473
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
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.
- carrotfertilitysupport_api, 3 hours ago, 26 messages
Had a previous thread with support on this here: #dev-help message
Thought updating the description on the Payment Intent object would solve the issue but it seems to be on this py_xxx object
Yeah a py_ is technically a charge
You can use this endpoint to update: 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.
Just pass the py_ id
No problem
and would this work with test data?
because passing either ch_3OwQaAGgLjlmKkZj03Bc2CGk or py_1Or0hH2eZtbQ1MPmbNx1zI0r values to that end point (which are both from events/transactions in our test account) that update endpoint is returning: { "error": { "code": "resource_missing", "doc_url": "https://stripe.com/docs/error-codes/resource-missing", "message": "No such charge: 'ch_3OwQaAGgLjlmKkZj03Bc2CGk'", "param": "id", "request_log_url": "https://dashboard.stripe.com/test/logs/req_uOiWKiwzQ9zFjb?t=1711134122", "type": "invalid_request_error" } }
and { "error": { "code": "resource_missing", "doc_url": "https://stripe.com/docs/error-codes/resource-missing", "message": "No such charge: 'py_1Or0hH2eZtbQ1MPmbNx1zI0r'", "param": "id", "request_log_url": "https://dashboard.stripe.com/test/logs/req_WHsxICnXUxzCx6?t=1711134088", "type": "invalid_request_error" } }
You made both those requests on
acct_1D4AA8K1rU3BMAyY
But the charge objects exist on acct_1LtvuN2eZtbQ1MPm and acct_1NYAF9GgLjlmKkZj
ah so we need to pass it the connect account as well?