Get chargeback - Refunds - Mercado Pago Developers
Get chargeback

GET

/v1/chargebacks/{id}
Check all the information related to a chargeback for your product or service with the ID of the chargeback you want.
Request's parameters
id

REQUIRED

string
Localization: pathThe "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 important to note that when using the payment ID, a small modification to the endpoint is required in order to make the call following the following format - https://api.mercadopago.com/v1/chargebacks/search?payment_id=PAYMENT_ID_.
Response parameters
id
string
Localization: bodyUnique chargeback identifier
payments
array
Localization: bodyList of payments IDs associated to the case
currency
string
Localization: bodyChergeback amount currency
amount
number
Localization: bodyChergeback amount
Request
curl
curl -X GET \
      'https://api.mercadopago.com/v1/chargebacks/{id}' \
       -H 'Authorization: Bearer YOUR_ACCESS_TOKEN \
      
Answer
json
{
  "payments": [
    {}
  ],
  "documentation": [
    {}
  ]
}