Skip to main content

Fetch Dispute Evidence

Suggest Edits


Overview

Retrieve the details of a specific evidence file by its unique identifier. This endpoint returns metadata about the evidence file including its processing state and file information.


Resource Access

Production (api.ahrvo.network)

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

Staging (gateway.ahrvo.network)

GET 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

Example Request

curl -X GET https://gateway.ahrvo.network/payments/na/disputes/DPxxxxxxxxxxxxxxxxxx/evidence/EVxxxxxxxxxxxxxxxxxx \
-H "Content-Type: application/json" \
-H "Authorization: Basic <base64_encoded_credentials>"

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",
"custom_tag": "December transaction"
},
"_links": {
"self": {
"href": "https://api.ahrvo.network/payments/na/disputes/DPxxxxxxxxxxxxxxxxxx/evidence/EVxxxxxxxxxxxxxxxxxx"
},
"dispute": {
"href": "https://api.ahrvo.network/payments/na/disputes/DPxxxxxxxxxxxxxxxxxx"
},
"download": {
"href": "https://api.ahrvo.network/payments/na/disputes/DPxxxxxxxxxxxxxxxxxx/evidence/EVxxxxxxxxxxxxxxxxxx/download"
}
}
}

API Documentation