#senakaRan
1 messages · Page 1 of 1 (latest)
hello! you can take a look at the guide in this section : https://stripe.com/docs/connect/customize-express-dashboard#destination-charges
ok let me check thanks
stripe.charges.update('py_1MWw65QWcfPEABoJ7kbFEO4S',
{description: 'one to second'}
).then((transResult)=>{
console.log(transResult,'result successssss');
})
.catch((error) => {
console.log(error,'errrrrrooorrrr');
})
this my code
No such charge: 'py_1MWw65QWcfPEABoJ7kbFEO4S'
faced this issue
is that possible to update with PY_xxxxx?
const charge = await stripe.charges.update(
'{{PAYMENT_ID}}',
{description: 'My custom description'},
{stripeAccount: '{{CONNECTED_ACCOUNT_ID}}'}
);
in the guide, there is sample
you're missing the StripeAccount
this is current my stripe account or destination account id?
your destination account id
yep, that's right
I want to change this transaction description
PY description is changed successfully
but still can not see this item chaged
what thing do I have to update?
I feel lost
plz guide me
payment detail has been changed by the api call
but it is not my wanted result still
destination Payment? or transfer? payment intent?
what is the correct thing?
can you share the request id [0]? it'd look like req_xxx
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
it's okay, i managed to find the request
you need to reach out to Stripe Support https://support.stripe.com/contact/email to ask them to enable custom descriptions for express accounts
Find help and support for Stripe. Our support center provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
after that feature is enabled, then it'll show the updated description
you need to reach out to Stripe Support https://support.stripe.com/contact/email to ask them to enable custom descriptions for express accounts. Then it'll display that updated description.
Find help and support for Stripe. Our support center provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
ok