Withdraw a dispute by setting its status to CLOSED.
You can only withdraw a dispute if canWithdraw is true on the dispute resource.
Security
UserToken
Optional UUID for correlating requests across systems. If provided, Wise echoes it back in the response. Maximum 36 characters. Learn more.
Example:f47ac10b-58cc-4372-a567-0e02b2c3d479
- Production Environmenthttps://api.wise.com/v3/spend/profiles/{profileId}/disputes/{disputeId}/status
- Sandbox Environmenthttps://api.wise-sandbox.com/v3/spend/profiles/{profileId}/disputes/{disputeId}/status
curl -i -X PUT \
https://api.wise.com/v3/spend/profiles/16605997/disputes/51e2dc60-9e4b-4ff5-b917-b90cc5e1ecfb/status \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'X-External-Correlation-Id: f47ac10b-58cc-4372-a567-0e02b2c3d479' \
-d '{
"status": "CLOSED"
}'The updated dispute.
Headers
Echoed back when X-External-Correlation-Id was included in the request. Learn more.
Example:"f47ac10b-58cc-4372-a567-0e02b2c3d479"
Dispute detailed status.
Enum:"SUBMITTED""IN_REVIEW""REFUNDED""REJECTED""WITHDRAWN""CONFIRMED""REFUND_IN_PROGRESS""ATTEMPTING_RECOVERY""RECOVERY_UNSUCCESSFUL"
Example:"WITHDRAWN"
Time when the dispute was last updated.
Example:"2024-03-27T02:30:27.374Z"
Response
{ "id": "51e2dc60-9e4b-4ff5-b917-b90cc5e1ecfb", "transactionId": 2040, "profileId": 16605997, "reason": "NEVER_ARRIVED", "status": "CLOSED", "subStatus": "WITHDRAWN", "statusMessage": "Withdrawn", "createdAt": "2024-03-08T08:30:14.989Z", "createdBy": "6097861", "lastUpdatedAt": "2024-03-27T13:12:28.390Z", "canWithdraw": false }