Dispute
Dispute: Finalize
Availability
Managing disputes via the API is only available to merchants who can access disputes in the
Braintree Control Panel.
Important
You must call this function in order for the evidence to be submitted on the dispute.
- C#
var result = gateway.Dispute.Finalize("a_dispute_id");
- C#
if (result.IsSuccess()) {
// dispute successfully finalized
} else {
foreach (ValidationError error in result.Errors.DeepAll()) {
Console.WriteLine(error.Code);
Console.WriteLine(error.Message);
}
}