Get payment intent list - Point Payments - Mercado Pago Developers
Get payment intent list

GET

/point/integration-api/payment-intents/events
This endpoint allows to get a list of payment intents with their final states between a date range. This endpoint has a restriction that the number of days between dates must not exceed 30.
Request's parameters
x-test-scope
string
Localization: headerThis is a temporary header, it should be used just for development with the value "sandbox"
startDate

REQUIRED

string
Localization: queryInitial date (YYYY-MM-DD)
endDate

REQUIRED

string
Localization: queryEnd date (YYYY-MM-DD)
Response parameters
events
array
Localization: body
Request
curl
curl -X GET \
      'https://api.mercadopago.com/point/integration-api/payment-intents/events?startDate=1948-01-16&endDate=2022-01-25' \
       -H 'Authorization: Bearer YOUR_ACCESS_TOKEN \
      
Answer
json
{
  "events": [
    {
      "payment_intent_id": "51374ba8-50e4-4633-a000-3e42ccd245f9",
      "status": "FINISHED",
      "created_on": "2021-08-30T22:38:05Z"
    }
  ]
}
Errors
400bad_request
400 Bad-Request - startDate and/or endDate are misssing or incorrect
401bad_request
401 Token is invalid
403bad_request
403 Forbidden - Integrator isn't registered
500bad_request
500 Internal server error