Get claim historyhttps://api.mercadopago.com/post-purchase/v1/claims/{claim_id}/status_history
This endpoint allows you to view, through a valid token, the history of states and scenarios that the complaint has gone through. It will also be possible to consult the history of actions taken by the people responsible for the complaint
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
stage
Indicates the 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
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.
date
Date of change in claim status.string
change_by
Indicates the person who changed the claim. It can take one of the following values:string
complainant: Person who claims
respondent: Person to whom they are complaining.
mediator: Person who intervenes to help solve the problem.
Request
curl -X GET \
'https://api.mercadopago.com/post-purchase/v1/claims/{claim_id}/status_history'\
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer APP_USR-8*********932064-12*********edf6d3c99*********2236c703f*********668' \
Response
[
{
"stage": "dispute",
"status": "closed",
"date": "2020-09-08T23:59:36.000-04:00",
"change_by": "mediator"
}
]