Skip to main content

defend Method

Overview

The defend method submits your formal argument against a chargeback claim.

Request Fields

FieldTypeRequiredDescription
disputeIdstringYesThe dispute ID
reasonCodestringYesDefense reason code
explanationstringYesDetailed explanation

Response Fields

FieldTypeDescription
disputeIdstringThe dispute ID
defenseSubmittedboolSuccess status
statusDisputeStatusUNDER_REVIEW

Example

$request = [
'disputeId' => 'dp_xxx',
'reasonCode' => 'product_or_service_provided',
'explanation' => 'Product was delivered successfully'
];
$response = $disputeClient->defend($request);