Dispute: Accept

See also the Dispute response object. You can only accept disputes that have a Status of Open. If you have already issued a refund for the disputed transaction, do not accept the dispute - instead, submit file or text evidence of the refund.
  1. C#
var result = gateway.Dispute.Accept("a_dispute_id");
If the dispute is successfully accepted, the result will be successful. Otherwise, check for validation errors.
  1. C#
if (result.IsSuccess()) {
    // dispute successfully accepted
} else {
    Console.WriteLine(result.Errors);
}
Arguments
DisputeIdrequired, string

The unique dispute identifier. You can only accept disputes that have a Status of OPEN.

;;