PickerPro Meli
Actions15
Overview
This node integrates PickerPro with n8n to automate various management tasks related to Mercado Libre, a popular e-commerce platform. It enables users to synchronize orders, update stock, and consult warehouse information in real time by accessing different Mercado Libre data endpoints through PickerPro's API.
The "Site States" operation specifically retrieves information about site states based on a given state ID and an integration token. This can be useful for workflows that need to monitor or react to changes in the status of specific sites or regions within Mercado Libre.
Practical examples:
- Automatically fetch the current state details of a Mercado Libre site to trigger alerts or updates.
- Use site state information to adjust inventory or marketing strategies dynamically.
- Integrate site state data into dashboards for real-time monitoring.
Properties
| Name | Meaning |
|---|---|
| IntegrationToken | A required secret token used to authenticate requests to the PickerPro API. |
| State ID | The identifier of the specific site state to retrieve information about. |
Output
The node outputs a JSON object under the key sitestates containing the data returned from the PickerPro API for the specified state ID. The exact structure depends on the API response but generally includes detailed information about the site's state.
No binary data output is produced by this operation.
Example output structure (conceptual):
{
"sitestates": {
"id": "stateId",
"name": "State Name",
"status": "active",
"details": { /* additional state-specific info */ }
}
}
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 as input to authenticate API calls.
- Relies on PickerPro's external API services 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. Ensure that the PickerPro API credential is set up with valid values.
- Invalid or missing Integration Token: The operation requires a non-empty token parameter; otherwise, API calls will fail.
- Unsupported Operation Error: If an unsupported operation name is provided, the node throws an error indicating the operation is not supported.
- Parameter retrieval errors: The node attempts to safely get parameters but logs errors if any parameter is missing or invalid. Double-check that all required parameters are correctly set.
- API call failures: Network issues or invalid tokens may cause API request failures. Verify network connectivity and token validity.
Links and References
- PickerPro Official Website (for API documentation and account setup)
- Mercado Libre Developer Portal (for understanding Mercado Libre data structures)
- n8n Documentation on Creating Custom Nodes