Skip to main content

Update Dispute Evidence

Suggest Edits


Overview

Update the tags (metadata) of an existing dispute evidence file. Tags can be used to add custom information or notes about the evidence file.


Resource Access

Production (api.ahrvo.network)

PUT https://api.ahrvo.network/payments/na/disputes/{dispute_id}/evidence/\{evidence_id}

Staging (gateway.ahrvo.network)

PUT http://gateway.ahrvo.network/payments/na/disputes/{dispute_id}/evidence/\{evidence_id}

Arguments

AttributeMandatory / OptionalDescription
dispute_idMandatoryThe unique ID of the dispute
evidence_idMandatoryThe unique ID of the evidence file
Finix-VersionMandatorySpecify the API version (e.g., 2022-02-01)
tagsMandatoryKey-value pairs of metadata to attach to the evidence

Example Request

curl -X PUT https://gateway.ahrvo.network/payments/na/disputes/DPxxxxxxxxxxxxxxxxxx/evidence/EVxxxxxxxxxxxxxxxxxx \
-H "Content-Type: application/json" \
-H "Authorization: Basic <base64_encoded_credentials>" \
-H "Finix-Version: 2022-02-01" \
-d '{
"tags": {
"document_type": "receipt",
"transaction_date": "2025-11-15",
"verified_by": "manager"
}
}'

Example Response

{
"id": "EVxxxxxxxxxxxxxxxxxx",
"created_at": "2025-12-10T11:50:00Z",
"dispute": "DPxxxxxxxxxxxxxxxxxx",
"state": "SUCCEEDED",
"tags": {
"file-extension": "pdf",
"content-type": "application/pdf",
"file-name": "receipt.pdf",
"document_type": "receipt",
"transaction_date": "2025-11-15",
"verified_by": "manager"
},
"_links": {
"self": {
"href": "https://api.ahrvo.network/payments/na/disputes/DPxxxxxxxxxxxxxxxxxx/evidence/EVxxxxxxxxxxxxxxxxxx"
},
"download": {
"href": "https://api.ahrvo.network/payments/na/disputes/DPxxxxxxxxxxxxxxxxxx/evidence/EVxxxxxxxxxxxxxxxxxx/download"
}
}
}

API Documentation