Skip to content

List Evidences

List dispute evidences
get/v1/disputes/{dispute_token}/evidences

List evidence metadata for a dispute.

Path Parameters
dispute_tokenstring
formatuuid
Query Parameters
beginstring
optional

Date string in RFC 3339 format. Only entries created after the specified time will be included. UTC time zone.

formatdate-time
endstring
optional

Date string in RFC 3339 format. Only entries created before the specified time will be included. UTC time zone.

formatdate-time
ending_beforestring
optional

A cursor representing an item's token before which a page of results should end. Used to retrieve the previous page of results before this item.

page_sizenumber
optional

Page size (for pagination).

maximum100
minimum1
starting_afterstring
optional

A cursor representing an item's token after which a page of results should begin. Used to retrieve the next page of results after this item.

Returns
dataarray of tokenstringcreatedstringdispute_tokenstringupload_statusenumdownload_urlstringfilenamestringupload_urlstringDisputeEvidence
has_moreboolean

More data exists.

Request example Request
curl https://api.lithic.com/v1/disputes/$DISPUTE_TOKEN/evidences \
    -H "Authorization: $LITHIC_API_KEY"
200 Example
{
  "data": [
    {
      "token": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
      "created": "2019-12-27T18:11:19.117Z",
      "dispute_token": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
      "upload_status": "DELETED",
      "download_url": "download_url",
      "filename": "filename",
      "upload_url": "upload_url"
    }
  ],
  "has_more": true
}