Intelligent search powered by OpenAI
Claims search
GET
Request's parameters
QUERY
id
Claim ID. Unique identifier used to reference a specific claim in the system, essential for tracking and managing these claims.number
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 morestage
he current stage of the claim within the processing cycle involving the buyer and seller. It can take one of the following values:string
claim: Initial stage of the claim process in which both the buyer and seller are involved.
dispute: Phase where the claim is under dispute or disagreement.
recontact: Stage in which one of the parties makes contact after the claim/dispute has been closed.
View morestatus
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.
Response parameters
paging
Information for pagination of search results.object
data
Presents the data of the complaint.array
Did you find this information useful?
Yes
Not
Request
curl -X GET \
'https://api.mercadopago.com/post-purchase/v1/claims/search?id=5039218470&type=mediations&stage=claim&status=closed&resource=shipment&resource_id=40128769543&date_created=2020-09-30T09:48:06.000-04:00&limit=5'\
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer TEST-2151*********762-03031*********750b665b7*********4dac477-1*********' \
Sample answer
{
"paging": {
"offset": 0,
"limit": 30,
"total": 1
},
"data": [
{
"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",
"benefited": "complainant",
"closed_by": "mediator"
},
"site_id": "MLA",
"date_created": "2020-09-30T09:48:06.000-04:00",
"last_updated": "2020-10-02T01:12:31.000-04:00"
}
]
}