See expected resolutions at mediation - Resolutions - Mercado Pago Developers
Which documentation are you looking for?

Do not know how to start integrating? 

Check the first steps
See expected resolutions at mediation

GET

https://api.mercadopago.com/post-purchase/v1/claims/{claim_id}/expected-resolutions
This endpoint allows, through a valid token, viewing the expected resolutions by the user in their claim.
Request's parameters
PATH
claim_id
number

REQUIRED

Claim ID. Unique identifier used to reference a specific claim in the system, essential for tracking and managing these claims.
Response parameters
player_role
string
User who initiated the claim.
user_id
number
User ID who initiated the claim.
expected_resolution
string
Presents possible resolutions expected by the complainant. It can take one of the following values:
refund: The user expects the money to be refunded.
product: The user expects the product to be delivered.
change_product: The user expects the product to be exchanged.
View more
date_created
string
Date the claim was created.
Request
curl -X GET \
    'https://api.mercadopago.com/post-purchase/v1/claims/{claim_id}/expected-resolutions'\
    -H 'Content-Type: application/json' \
       -H 'Authorization: Bearer TEST-3322*********190-03031*********46528954c*********0339910-1*********' \
    
Sample answer
{
  "player_role": "complainant",
  "user_id": 40014151,
  "expected_resolution": "product",
  "date_created": "2020-09-30T09:48:06.000-04:00",
  "last_updated": "2020-10-02T01:12:31.000-04:00",
  "status": "pending"
}