---
title: "List Dispute Evidence"
method: GET
path: "/disputes/{dispute_id}/evidence"
tags: ["Disputes"]
---

# List Dispute Evidence

`GET /disputes/{dispute_id}/evidence`

Retrieve a list of `Dispute Evidence` for a `Dispute`.

## Query parameters

- `after_cursor` string
- `before_cursor` string
- `created_at.gte` string, date-time
- `created_at.lte` string, date-time
- `limit` integer
- `tags.key` string
- `tags.value` string
- `updated_at.gte` string, date-time
- `updated_at.lte` string, date-time

## Headers

- `Finix-Version` string

## Response `200`

List of `Dispute Evidence` resources

- object
  - `page` Page — Details the page that's returned.
    - `limit` integer — The number of entries to return.
    - `next_cursor` string, nullable — The cursor to use for the next page of results.
  - `_embedded` object
    - `evidences` DisputeEvidence[]
      - `id` string — The ID of the resource.
      - `created_at` string, date-time — Timestamp of when the object was created.
      - `updated_at` string, date-time — Timestamp of when the object was last updated.
      - `application` string — ID of the `Application` the resource was created under.
      - `dispute` string — The ID of the `Dispute` associated with the evidence.
      - `state` 'PENDING' | 'SUCCEEDED' | 'CANCELED' | 'FAILED' — The result after uploading evidence. - `PENDING`: The evidence file has not yet been submitted to the processor. No user action is required. - `SUCCEEDED`: The evidence file has been successfully sent to the processor. No further user action is required. - `CANCELED`: The evidence file upload was not completed due to user action. - `FAILED`: The evidence file could not be processed. Check `failure_code` for the specific reason and `failure_message` for a user-safe description of the issue.
      - `failure_code` 'MALWARE_DETECTED' | 'GENERIC_FAILURE' | 'FILE_SIZE_LIMIT_EXCEEDED' | 'TOTAL_COMBINED_FILE_SIZE_LIMIT_EXCEEDED' | 'TOTAL_PAGE_COUNT_LIMIT_EXCEEDED', nullable — The reason the evidence file failed processing. Populated when `state` is `FAILED`; `null` otherwise. - `MALWARE_DETECTED`: The file was flagged for suspicious content and cannot be accepted. - `GENERIC_FAILURE`: An unexpected error occurred. Contact support for details. - `FILE_SIZE_LIMIT_EXCEEDED`: The file exceeds the maximum allowed file size. - `TOTAL_COMBINED_FILE_SIZE_LIMIT_EXCEEDED`: The total size of all uploaded evidence exceeds the maximum combined file size limit. - `TOTAL_PAGE_COUNT_LIMIT_EXCEEDED`: The total number of pages across all uploaded evidence exceeds the maximum allowed page count.
      - `failure_message` string, nullable — A human-readable message explaining why the evidence file failed processing. Populated when `state` is `FAILED`; `null` otherwise. Safe to surface directly in a UI.
      - `identity` string — The ID of the seller's `Identity` resource. This is the `Identity` resource that was used to create the seller's `Merchant`.
      - `merchant` string — The ID of the seller's `Merchant` resource. This is the `Merchant` account the `Dispute` was filed against.
      - `content_type` string — The MIME type of the uploaded evidence file (e.g. `application/pdf`, `image/jpeg`).
      - `extension` string — The file extension, a suffix at the end of a `file_name` (letters following last period).
      - `file_name` string — The name of the uploaded evidence file.
      - `tags` Tags, nullable — Include up to 50 `key: value` pairs to annotate requests with custom metadata. - Maximum character length for individual `keys` is 40. - Maximum character length for individual `values` is 500. (For example, `order_number: 25`, `item_type: produce`, `department: sales`)
      - `_links` object — For your convenience, every response includes several URLs which link to resources relevant to the request. You can use these `_links` to make your follow-up requests and quickly access relevant IDs.
        - `self` object — Link to the resource that was used in the request.
          - `href` string
  - `_links` object
    - `self` Self — Link to the resource that was used in the request.
      - `href` string
    - `next` Next — Link to the next page of entries.
      - `href` string

## Other responses

- `401` — Unauthorized. Authentication is required and has failed or has not been provided.
- `403` — Forbidden. The client is authenticated but does not have permission to access the resource.
- `404` — Not Found. The requested resource could not be found on the server.
- `406` — Not Acceptable. The server could not accept the submitted request. Confirm how the request was formatted and submitted.
- `422` — Unprocessable Entity. The syntax of the request content was correct, but the server was unable to process the contained instructions.

---

[API](https://skmtc.net/finix/apis/finix-api-reference.md) · [All operations](https://skmtc.net/finix/apis/finix-api-reference/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/finix/finix-api-reference/revisions/67e4dc871bfc/schema)
