Delete Evidence
Withdraw dispute evidence
delete/v1/disputes/{dispute_token}/evidences/{evidence_token}
Soft delete evidence for a dispute. Evidence will not be reviewed or submitted by Lithic after it is withdrawn.
Path Parameters
dispute_tokenstring
formatuuid
evidence_tokenstring
formatuuid
Returns
tokenstringcreatedstringdispute_tokenstringupload_statusenumdownload_urlstringfilenamestringupload_urlstringDisputeEvidence
Request example Request
curl https://api.lithic.com/v1/disputes/$DISPUTE_TOKEN/evidences/$EVIDENCE_TOKEN \
-X DELETE \
-H "Authorization: $LITHIC_API_KEY"
200 Example
{
"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"
}