Intelligent search powered by OpenAIÂ
Get chargeback
GET
Products that use it:
Request's parameters
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 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"
}