Dispute

Dispute: Remove Evidence

Availability
Managing disputes via the API is only available to merchants who can access disputes in the Braintree Control Panel.
You can remove evidence on a dispute through this method. You can only remove evidence for disputes that have a status of Open.
  1. Node
const result = gateway.dispute.removeEvidence(
    "a_dispute_id",
    "a_evidence_id"
);
If the evidence is successfully removed from the dispute, the result will be successful. Otherwise, check for validation errors.
  1. Node
result.then((response) => {
    if (response.success) {
        // evidence removed successfully
    } else {
        console.log(response.errors);
    }
});
Arguments
disputeIdrequired, String
The unique dispute identifier.
evidenceIdrequired, String

The unique evidence identifier. Found on the dispute object evidence.id