#devil_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/1364202350197084200
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hi
I have this in my code ( nodejs) :
if (args.fileId != null) {
await stripe.fileLinks.create({
file: args.fileId,
})
}
await stripe.disputes.update(args.disputeId, {
evidence: {
cancellation_policy_disclosure:
args?.evidenceInfo?.cancellation_policy_disclosure,
refund_policy_disclosure:
args?.evidenceInfo?.refund_policy_disclosure,
refund_refusal_explanation:
args?.evidenceInfo?.refund_refusal_explanation,
product_description: args?.evidenceInfo?.product_description,
customer_name: args?.evidenceInfo?.customer_name,
customer_email_address: args?.evidenceInfo?.customer_email,
billing_address: args?.evidenceInfo?.billing_address,
uncategorized_text: args?.evidenceInfo?.uncategorized_text,
...(args.fileId != null &&
args.evidenceType != null &&
determineEvidenceSubmit(args.evidenceType, args.fileId)),
},
})
A customer is complaining that their dispute was lost, and is "accusing" us of never sending the file over ( that they submitted to counter the dispute )
dispute id: du_1R4xNuQCkBHk88LIGoLTDe6P
can you somehow check if the file was submitted?
I can retrieve the file via fileLinks api
Yep, as reflected on this event: https://dashboard.stripe.com/events/evt_3Quv2gQCkBHk88LI1Yf1CyLo
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
After you submit a response, the status of the dispute changes to under review
https://docs.stripe.com/disputes/responding#status
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
I can't really help you here then, I'd recommend speaking with support once you're authenticated on your account