PickerPro Meli icon

PickerPro Meli

This node integrates PickerPro with n8n to automate management in Mercado Libre, allowing order synchronization, stock updates and warehouse consultation in real time

Overview

This node integrates PickerPro with n8n to automate various management tasks related to Mercado Libre, a popular e-commerce platform in Latin America. It enables real-time synchronization of orders, stock updates, and warehouse consultations by accessing multiple Mercado Libre data endpoints through PickerPro's API.

The "Site Country" operation specifically retrieves information about a country based on a provided country ID and an integration token. This can be useful for workflows that need to validate or enrich data related to countries within the Mercado Libre ecosystem, such as regional sales analysis, shipping configurations, or localization settings.

Practical example:
A user could use this node to fetch detailed country information before processing orders or setting up shipping rules tailored to specific countries supported by Mercado Libre.

Properties

Name Meaning
IntegrationToken A required secret token used to authenticate requests to the PickerPro API.
Country ID The identifier of the country for which information is requested.

Output

The output JSON contains a single field named sitecountry which holds the response from the PickerPro API call fetching country details. The exact structure depends on the external API but typically includes country-specific metadata relevant to Mercado Libre operations.

No binary data output is produced by this operation.

Example output structure (conceptual):

{
  "sitecountry": {
    "id": "AR",
    "name": "Argentina",
    "currency": "ARS",
    "locale": "es_AR",
    ...
  }
}

Dependencies

  • Requires an active PickerPro API credential with a valid API key and organization ID configured in n8n.
  • The user must provide a valid integration token (IntegrationToken) for authenticating API calls.
  • Relies on the external PickerPro API service to fetch Mercado Libre data.

Troubleshooting

  • Missing API Key or Organization ID: The node will throw an error if these credentials are not configured properly in n8n. Ensure the PickerPro API credential is set up with valid values.
  • Invalid or missing Integration Token: The operation requires a non-empty token parameter; otherwise, the API call will fail.
  • Unsupported Operation Error: If the operation parameter is set incorrectly or to an unsupported value, the node throws an error indicating the operation is not supported.
  • API Call Failures: Network issues or invalid parameters (e.g., incorrect country ID) may cause the API call to fail. Check the token and country ID values and verify connectivity to the PickerPro API.

Links and References

Discussion