Mercado Pago - Get Customers
Description
Section titled “Description”Gets customers registered in Mercado Pago. Allows searching by specific ID, filtering by email, or listing with pagination.
Configuration
Section titled “Configuration”| Field | Type | Required | Description |
|---|---|---|---|
| credentials_id | credential | Yes | Mercado Pago credentials |
| customer_id | string | No | Specific customer ID |
| string | No | Filter by email | |
| limit | number | No | Number of results (default: 10) |
| offset | number | No | Offset for pagination |
Credentials
Section titled “Credentials”This module requires a mercadopago type credential with the following fields:
- Access Token: Mercado Pago access token (obtained from the developer dashboard)
Output
Section titled “Output”Search by ID
Section titled “Search by ID”{ "success": true, "customer": { "id": "123456789", "email": "cliente@email.com", "first_name": "Juan", "last_name": "Pérez", "phone": { ... }, "identification": { ... }, "cards": [ ... ] }}Search with filters
Section titled “Search with filters”{ "success": true, "customers": [ ... ], "paging": { "total": 50, "offset": 0, "limit": 10 }}Usage Example
Section titled “Usage Example”Get customer by ID
Section titled “Get customer by ID”{ "customer_id": "123456789"}Search customer by email
Section titled “Search customer by email”{ "email": "cliente@email.com"}API Used
Section titled “API Used”- Endpoint:
GET /v1/customers/{id}orGET /v1/customers/search - Documentation: Mercado Pago Customers API
- Customers in Mercado Pago are created when they save cards for future payments
- Each customer can have multiple saved cards
- The
customer_idis unique and automatically generated
Related Nodes
Section titled “Related Nodes”- MercadopagoCreateCustomer - Create customer
- MercadopagoCreatePayment - Create payment
- MercadopagoGetPayments - Get payments