Skip to content

Mercado Pago - Get Payments

Searches and gets payments from Mercado Pago with advanced filters. Allows searching by ID, external reference, status, date range, and more.

FieldTypeRequiredDescription
credentials_idcredentialYesMercado Pago credentials
payment_idstringNoSpecific payment ID
external_referencestringNoFilter by external reference
statusselectNoPayment status (approved, pending, rejected, etc.)
begin_datestringNoStart date (ISO 8601)
end_datestringNoEnd date (ISO 8601)
sortselectNoSort field (date_created, date_approved, etc.)
criteriaselectNoAscending or descending order
limitnumberNoNumber of results (default: 10)
offsetnumberNoOffset for pagination

This module requires a mercadopago type credential with the following fields:

  • Access Token: Mercado Pago access token (obtained from the developer dashboard)
{
"success": true,
"payment": { ... },
"payments": [ ... ],
"paging": {
"total": 100,
"offset": 0,
"limit": 10
}
}
  • approved: Payment approved
  • pending: Payment pending
  • in_process: In process
  • rejected: Rejected
  • cancelled: Canceled
  • refunded: Refunded
  • charged_back: Chargeback
  1. Get a specific payment by ID
  2. Search all approved payments from the last month
  3. List payments with a specific external reference
  • If payment_id is provided, a single payment is returned
  • Without payment_id, a search is performed with the provided filters
  • Results are paginated with limit and offset
  • Dates must be in ISO 8601 format
  • MercadopagoCreatePayment - Create payment
  • MercadopagoCreateRefund - Create refund
  • MercadopagoGetCustomers - Get customers