Pre-Dispute Outcome
Submit the outcome of a pre-dispute case. This endpoint allows merchants to respond to dispute alerts by providing the resolution details, including refund information and action taken.
POSThttps://api.efundpay.com/v4/risk/preDispute/{alert_id}/outcome
This endpoint requires the
pre-dispute.write
scope.Headers
timestampstringrequired
The timestamp of the request in YYYYMMDDHHMMSS format.
Examples:
"20240514183352"
timezonestringrequired
The timezone of the request.
Examples:
"Asia/Shanghai"
signaturestringrequired
The signature generated from the request body for authentication.
Examples:
"<signature>"
Body
application/jsonoutcomeobjectrequired
The case response object containing dispute outcome details.
Response
application/json
Successful Response
responseobject
Empty object response indicating successful processing.
Examples:
"{}"
curl --request POST \--url https://api.efundpay.com/v4/risk/preDispute/<alert_id>/outcome \--header 'timestamp: 20240514183352' \--header 'timezone: Asia/Shanghai' \--header 'signature: <signature>' \--header 'Content-Type: application/json' \--data '{"outcome": {"alert_id": "alert-12345","outcome": "stopped","refunded": "UG3300003347YP","amount_stopped": "1","action_date": "2024-05-14","comments": "Customer requested refund"}}'
{}