accept Method
Overview
The accept method concedes a dispute and accepts the loss.
Request Fields
| Field | Type | Required | Description |
|---|---|---|---|
disputeId | string | Yes | The dispute ID |
reason | string | No | Internal reason |
Response Fields
| Field | Type | Description |
|---|---|---|
disputeId | string | The dispute ID |
status | DisputeStatus | LOST |
amountDebited | Money | Amount charged back |
Example
$request = [
'disputeId' => 'dp_xxx',
'reason' => 'Insufficient evidence'
];
$response = $disputeClient->accept($request);