Skip to content

Mercado Pago - Get Customers

Gets customers registered in Mercado Pago. Allows searching by specific ID, filtering by email, or listing with pagination.

FieldTypeRequiredDescription
credentials_idcredentialYesMercado Pago credentials
customer_idstringNoSpecific customer ID
emailstringNoFilter by email
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,
"customer": {
"id": "123456789",
"email": "cliente@email.com",
"first_name": "Juan",
"last_name": "Pérez",
"phone": { ... },
"identification": { ... },
"cards": [ ... ]
}
}
{
"success": true,
"customers": [ ... ],
"paging": {
"total": 50,
"offset": 0,
"limit": 10
}
}
{
"customer_id": "123456789"
}
{
"email": "cliente@email.com"
}
  • Customers in Mercado Pago are created when they save cards for future payments
  • Each customer can have multiple saved cards
  • The customer_id is unique and automatically generated
  • MercadopagoCreateCustomer - Create customer
  • MercadopagoCreatePayment - Create payment
  • MercadopagoGetPayments - Get payments