List Dispute Evidence
Suggest Edits
Overview
Retrieve a list of all evidence files uploaded for a specific dispute. This endpoint returns metadata about each file including filename, content type, and processing state.
Resource Access
Production (api.ahrvo.network)
GET https://api.ahrvo.network/payments/na/disputes/\{dispute_id}/evidence
Staging (gateway.ahrvo.network)
GET http://gateway.ahrvo.network/payments/na/disputes/\{dispute_id}/evidence
Arguments
| Attribute | Mandatory / Optional | Description |
|---|---|---|
dispute_id | Mandatory | The unique ID of the dispute |
limit | Optional | The number of items to return |
after_cursor | Optional | Return every resource created after the cursor value |
Example Request
curl -X GET "https://gateway.ahrvo.network/payments/na/disputes/DPxxxxxxxxxxxxxxxxxx/evidence?limit=10" \
-H "Content-Type: application/json" \
-H "Authorization: Basic <base64_encoded_credentials>"
Example Response
{
"_embedded": {
"evidences": [
{
"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"
},
"_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"
}
}
},
{
"id": "EVyyyyyyyyyyyyyyyyyy",
"created_at": "2025-12-10T12:15:00Z",
"dispute": "DPxxxxxxxxxxxxxxxxxx",
"state": "SUCCEEDED",
"tags": {
"file-extension": "jpg",
"content-type": "image/jpeg",
"file-name": "shipping_confirmation.jpg"
},
"_links": {
"self": {
"href": "https://api.ahrvo.network/payments/na/disputes/DPxxxxxxxxxxxxxxxxxx/evidence/EVyyyyyyyyyyyyyyyyyy"
},
"download": {
"href": "https://api.ahrvo.network/payments/na/disputes/DPxxxxxxxxxxxxxxxxxx/evidence/EVyyyyyyyyyyyyyyyyyy/download"
}
}
}
]
},
"page": {
"offset": 0,
"limit": 10,
"count": 2
},
"_links": {
"self": {
"href": "https://api.ahrvo.network/payments/na/disputes/DPxxxxxxxxxxxxxxxxxx/evidence?limit=10"
}
}
}