---
title: "Get a dispute"
method: GET
path: "/v1/disputes/{disputeId}"
tags: ["Exception"]
---

# Get a dispute

`GET /v1/disputes/{disputeId}`

Use this endpoint to retrieve the details of a specific dispute by its identifier, including its current state, category, and any submitted evidence.

## Path parameters

- `disputeId` string, required

## Headers

- `X-Request-Id` string

## Response `200`

Successfully retrieved dispute

- DisputeResponse — Dispute details
  - `category` 'BANK_FEE_ERROR' | 'UNRECOGNIZED_CHARGE' | 'DUPLICATE_TRANSACTION' | 'OTHER' — Category of the dispute
  - `createdAt` string — Creation timestamp in RFC3339 format
  - `description` string — Description of the dispute
  - `evidence` EvidenceResponse[] — Evidence submitted for this dispute
    - `comment` string — Comment describing the evidence
    - `disputeId` string — Dispute ID this evidence belongs to
    - `fileUrl` string — URL to evidence file
    - `id` string — Unique identifier for the evidence
    - `submittedAt` string — When the evidence was submitted in RFC3339 format
    - `submittedBy` string — User who submitted the evidence
  - `exceptionId` string — Exception ID this dispute is for
  - `id` string — Unique identifier for the dispute
  - `openedBy` string — User who opened the dispute
  - `reopenReason` string — Reason for reopening if reopened
  - `resolution` string — Resolution description when closed
  - `state` 'DRAFT' | 'OPEN' | 'PENDING_EVIDENCE' | 'WON' | 'LOST' — Current state
  - `updatedAt` string — Last update timestamp in RFC3339 format

## Other responses

- `400` — The request contains invalid parameters or payload.
- `401` — The request lacks valid authentication credentials.
- `403` — You do not have permission to access this resource.
- `404` — Dispute not found
- `500` — An unexpected error occurred on the server.

---

[API](https://skmtc.net/lerian/apis/identity-plugin.md) · [All operations](https://skmtc.net/lerian/apis/identity-plugin/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/lerian/identity-plugin/versions/25daba385532/schema)
