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
| Attribute | Mandatory / Optional | Description |
|---|---|---|
dispute_id | Mandatory | The unique ID of the dispute |
evidence_id | Mandatory | The unique ID of the evidence file |
Finix-Version | Mandatory | Specify the API version (e.g., 2022-02-01) |
tags | Mandatory | Key-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"
}
}
}