List disputes for a profile with optional filters.
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
- Sandbox Environmenthttps://api.wise-sandbox.com/v3/spend/profiles/{profileId}/disputes
curl -i -X GET \
'https://api.wise.com/v3/spend/profiles/16605997/disputes?status=ACTIVE&transactionId=2040&pageSize=10&pageNumber=1' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'X-External-Correlation-Id: f47ac10b-58cc-4372-a567-0e02b2c3d479'Paginated list of disputes.
Headers
Echoed back when X-External-Correlation-Id was included in the request. Learn more.
Example:"f47ac10b-58cc-4372-a567-0e02b2c3d479"
Response
{ "totalCount": 2, "disputes": [ { "id": "51e2dc60-9e4b-4ff5-b917-b90cc5e1ecfb", "transactionId": 2040, "profileId": 16605997, "reason": "NEVER_ARRIVED", "status": "ACTIVE", "subStatus": "SUBMITTED", "statusMessage": "Submitted", "createdAt": "2024-03-08T08:30:14.989Z", "createdBy": "6097861", "lastUpdatedAt": "2024-03-08T08:30:14.989Z", "canWithdraw": true }, { "id": "9c5ca0cb-00d6-41f7-8214-8cfdb11388a7", "transactionId": 3405, "profileId": 16605997, "reason": "CANCELLED_ORDER", "status": "ACTIVE", "subStatus": "SUBMITTED", "statusMessage": "Submitted", "createdAt": "2024-03-27T02:24:16.878Z", "createdBy": "6097861", "lastUpdatedAt": "2024-03-27T02:24:16.878Z", "canWithdraw": true } ] }