Home
Documentation
Resources
Partners
Community

Resources

Check for updates on our solutions and system performance, or request technical support.

Partners

Discover our program for agencies or developers that offer integration services and sellers who want to hire them.

Community

Get the latest news, ask others for help and share your knowledge.

Get chargeback - Chargebacks - Mercado Pago Developers

Intelligent search powered by OpenAI 

Get chargeback

GET

https://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.
Request's parameters
PATH
id
string

REQUIRED

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 more
Response parameters
id
string
Unique chargeback identifier.
payments
array
List of payments IDs associated to the case.
currency
string
Chergeback amount currency.
amount
number
Chargeback amount.
Request
curl -X GET \
    'https://api.mercadopago.com/v1/chargebacks/{id}'\
    -H 'Content-Type: application/json' \
       -H 'Authorization: Bearer TEST-7434*********159-03141*********cee51edf8*********f94f589-1*********' \
    
Sample answer
{
  "id": "217000087654321000",
  "payments": [
    {}
  ],
  "currency": "BRL",
  "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?access_token=APP_USR-X-X-X-X",
      "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"
}