Get chargebackhttps://api.mercadopago.com/v1/chargebacks/{id}
This endpoint allows you to check the status of a payment chargeback iniciated by a payer. You must inform the ID of the chargeback that was notified to you and, if the request is correct, a response with status code 200 and all the information related to it will be returned.
GET
Request parameters
Header
Authorization
Access Token obtained through the developer panel. Must be sent in all requests.string
REQUIRED
Path
id
The "id" parameter represents a unique identifier for the chargeback transaction. If you do not have this specific information, simply insert the payment ID for which you want to obtain the chargeback details. It is impo...View morestring
REQUIRED
Response parameters
id
Unique chargeback identifier.string
payments
List of payments IDs associated to the case.array
currency
Chergeback amount currency.string
amount
Chargeback amount.number
Request
curl -X GET \
'https://api.mercadopago.com/v1/chargebacks/{id}'\
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer APP_USR-8*********932064-12*********edf6d3c99*********2236c703f*********668' \
Response
{
"id": "217000087654321000",
"payments": [
{}
],
"currency": "CLP",
"amount": "108.43",
"coverage_applied": "true",
"coverage_elegible": "true",
"documentation_required": "true",
"documentation_status": "valid",
"documentation": [
{
"type": "application/pdf",
"url": "http://api.mercadopago.com/v1/chargebacks/documentation/other/2ec3bb6c-9b8b-47a0-8bc4-6f9b2ac60061",
"description": "File: FILE_123.pdf"
}
],
"date_documentation_deadline": "2024-05-26T23:59:59.000-04:00",
"date_created": "2024-05-16T17:19:13.000-04:00",
"date_last_updated": "2024-05-27T08:17:19.866-04:00",
"live_mode": "true"
}