Bol.com Retailer icon

Bol.com Retailer

Interact with Bol.com Retailer API

Overview

This node integrates with the Bol.com Retailer API to manage orders. Specifically, the "Get Order" operation retrieves detailed information about a single order using its unique identifier. This is useful for scenarios where you need to fetch order details for processing, tracking, or reporting purposes.

Practical examples include:

  • Fetching order details to verify customer purchases.
  • Integrating order data into external systems like CRMs or ERPs.
  • Automating workflows based on order status or contents.

Properties

Name Meaning
Order ID The unique identifier of the order to retrieve.

Output

The output is a JSON object representing the order details as returned by the Bol.com Retailer API. This typically includes all relevant information about the order such as items, prices, customer info, status, and shipping details.

If multiple orders were retrieved (not applicable here since this is a single get operation), the output would be an array of such objects. No binary data is output by this operation.

Dependencies

  • Requires an API authentication token configured in n8n to access the Bol.com Retailer API.
  • The node uses the base URL https://api.bol.com and expects JSON responses.
  • Proper OAuth2 credentials must be set up in n8n for authentication.

Troubleshooting

  • Common issues:

    • Invalid or missing Order ID will cause the API request to fail.
    • Authentication errors if the API token is expired or misconfigured.
    • Network connectivity problems can prevent reaching the Bol.com API.
  • Error messages:

    • Errors from the API are passed through; typical messages might include "Order not found" or "Unauthorized".
    • If the node is set to continue on failure, error details will appear in the output JSON under an error field.
  • Resolutions:

    • Verify the Order ID is correct and exists.
    • Ensure the API credentials are valid and have necessary permissions.
    • Check network settings and proxy configurations if applicable.

Links and References

Discussion