v1
latestOpenAPI 3.1.02026-07-263644911022.4 KBException
Get a dispute
Use this endpoint to retrieve the details of a specific dispute by its identifier, including its current state, category, and any submitted evidence.
get/v1/disputes/{disputeId}
Path parameters
disputeIdstring required
The unique identifier of the dispute.
Headers
X-Request-Idstring
A unique identifier for tracing the request across services.
Response
Successfully retrieved dispute
Example response
{
"category": "BANK_FEE_ERROR",
"createdAt": "2025-01-15T10:30:00.000Z",
"description": "Transaction amount differs from expected",
"evidence": [
{
"comment": "Bank statement attached",
"disputeId": "019c96a0-10d2-7193-8841-0d7347efd09a",
"fileUrl": "https://storage.example.com/evidence/doc123.pdf",
"id": "019c96a0-0c0d-7915-84b9-e497bfee9916",
"submittedAt": "2025-01-15T10:30:00.000Z",
"submittedBy": "user@example.com"
}
],
"exceptionId": "019c96a0-10d2-7134-ba5f-664142ee7052",
"id": "019c96a0-10d2-7193-8841-0d7347efd09a",
"openedBy": "user@example.com",
"reopenReason": "New evidence discovered",
"resolution": "Counterparty confirmed error",
"state": "OPEN",
"updatedAt": "2025-01-15T10:30:00.000Z"
}