cURL
curl --request GET \ --url https://app.disputeninja.io/api/v1/disputes/{dispute_id} \ --header 'Authorization: Bearer <token>'
{ "id": "<string>", "object": "dispute", "initiated_at": "2023-11-07T05:31:56Z", "response_due_by": "2023-11-07T05:31:56Z", "amount": 123, "currency": "<string>", "reason": "<string>", "status": "<string>", "provider": "<string>", "evidence": { "products": [ { "product_title": "<string>", "price": 123, "quantity": 123, "currency_code": "<string>" } ], "delivery_method": "digital", "merchant_profile": { "merchant_id": "<string>", "merchant_name": "<string>", "merchant_website": "<string>" }, "shipping_tracking_numbers": [ "<string>" ], "additional_evidence": {} } }
Get dispute details
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The ID of the dispute to retrieve
Dispute details
The response is of type object.
object