Skip to main content

Fetch a Dispute

Suggest Edits


Overview

Retrieve the details of a specific dispute by its unique identifier. This endpoint returns comprehensive information about the dispute including amount, reason, deadlines, and current state.


Resource Access

Production (api.ahrvo.network)

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

Staging (gateway.ahrvo.network)

GET http://gateway.ahrvo.network/payments/na/disputes/\{dispute_id}

Arguments

AttributeMandatory / OptionalDescription
dispute_idMandatoryThe unique ID of the dispute to retrieve

Example Request

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

Example Response

{
"id": "DPxxxxxxxxxxxxxxxxxx",
"created_at": "2025-12-08T14:30:00Z",
"updated_at": "2025-12-08T14:30:00Z",
"amount": 50000,
"transfer": "TRxxxxxxxxxxxxxxxxxx",
"reason": "FRAUD",
"respond_by": "2025-12-22T23:59:59Z",
"state": "PENDING",
"response_state": "NEEDS_RESPONSE",
"evidence_submitted": "CHARGEBACK",
"tags": {
"order_id": "ORDER-12345",
"customer_email": "customer@example.com"
},
"_links": {
"self": {
"href": "https://api.ahrvo.network/payments/na/disputes/DPxxxxxxxxxxxxxxxxxx"
},
"transfer": {
"href": "https://api.ahrvo.network/payments/na/transfers/TRxxxxxxxxxxxxxxxxxx"
},
"evidence": {
"href": "https://api.ahrvo.network/payments/na/disputes/DPxxxxxxxxxxxxxxxxxx/evidence"
},
"adjustment_transfers": {
"href": "https://api.ahrvo.network/payments/na/disputes/DPxxxxxxxxxxxxxxxxxx/adjustment_transfers"
}
}
}

API Documentation