Dispute

Dispute: Finalize

See also the Dispute response object.

availability

Managing disputes via the API is only available to merchants who can access disputes in the Braintree Control Panel.

You can only finalize disputes that have a status of OPEN. This will submit the evidence to the banks and update the status to DISPUTED.

important

You must call this function in order for the evidence to be submitted on the dispute.

  1. Python
result = gateway.dispute.finalize("a_dispute_id")

If the dispute is successfully finalized, the result will be successful. Otherwise, check for validation errors.

  1. Python
if result.is_success:
  # dispute successfully finalized
else:
    for error in result.errors.deep_errors:
        print(error.code)
        print(error.message)
Arguments
dispute_idrequired, str

The unique dispute identifier. You can only finalize disputes that have a status of OPEN.