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.

See expected resolutions at mediation - Resolutions - Mercado Pago Developers

Intelligent search powered by OpenAI 

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-4599*********755-11221*********d497ae962*********ecf8d85-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"
  }
]