Get claim detailshttps://api.mercadopago.com/post-purchase/v1/claims/{claim_id}
This endpoint allows you to obtain, through a valid token, details of claims such as, for example, information about the users involved and the order that generated the claim.
GET
Request parameters
Header
Authorization
Access Token obtained through the developer panel. Must be sent in all requests.string
REQUIRED
Path
claim_id
Claim ID. Unique identifier used to reference a specific claim in the system, essential for tracking and managing these claims.number
REQUIRED
Response parameters
id
Claim ID. Unique identifier used to reference a specific claim in the system, essential for tracking and managing these claims.number
resource_id
ID of the resource on which the claim is created and depends on the 'resource' parameter.number
status
Specifies the current state of the claim, indicating whether it is open or closed. It can take one of the following values:string
opened: Indicates that the claim is open.
closed: Indicates that the claim is closed.
type
Defines the nature of the claim being processed. It can take one of the following values:string
mediations: Refers to the process of mediating between parties in a claim.
cancel_purchase: Involves the process of cancelling a previously made purchase.
return: Pertains to the process of returning a purchased item.
View moreRequest
curl -X GET \
'https://api.mercadopago.com/post-purchase/v1/claims/{claim_id}'\
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer APP_USR-8*********932064-12*********edf6d3c99*********2236c703f*********668' \
Response
{
"id": 5033102536,
"resource_id": 7138572864,
"status": "closed",
"type": "mediations",
"stage": "dispute",
"parent_id": null,
"resource": "shipment",
"reason_id": "PNR4071",
"fulfilled": true,
"quantity_type": "total",
"players": [
{
"role": "mediator",
"type": "payer",
"user_id": 242829175,
"available_actions": [
{
"action": "recontact",
"due_date": "2020-11-16T22:36:59.000-04:00",
"mandatory": true
}
]
}
],
"resolution": {
"reason": "already_shipped",
"date_created": "2020-10-02T01:12:31.000-04:00",
"decision": [
{}
],
"closed_by": "mediator"
},
"site_id": "MLC",
"date_created": "2020-09-30T09:48:06.000-04:00",
"last_updated": "2020-10-02T01:12:31.000-04:00"
}