AI resources
See expected resolutions at mediationhttps://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.
GET
Request parameters
Header
Authorization
string
REQUIRED
Access Token obtained through the developer panel. Must be sent in all requests.
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.
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 APP_USR-8*********88776-122*********fc20dede6*********a497d7225*********64' \
Response
[
{
"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"
}
]