OTTO Market icon

OTTO Market

Consume OTTO Market API

Actions4

Overview

This node integrates with the OTTO Market API to retrieve detailed information about a specific order. It is designed to fetch an individual order by its unique identifier, such as the order number or sales order ID. This functionality is useful in scenarios where you need to verify order details, track order status, or synchronize order data between OTTO Market and other systems.

Practical examples:

  • Automatically retrieving order details after receiving a new order notification.
  • Fetching order information to update your internal CRM or ERP system.
  • Validating order data before processing shipments or returns.

Properties

Name Meaning
Order Identifier Unique order number or sales order ID to fetch the specific order details

Output

The node outputs an array of JSON objects, each containing an orderData field. This field holds the detailed information of the requested order as returned by the OTTO Market API. The structure of orderData corresponds to the order object defined by the OTTO Market API, typically including fields such as order ID, customer details, items ordered, pricing, status, and timestamps.

No binary data output is produced by this operation.

Example output structure (simplified):

[
  {
    "orderData": {
      "orderId": "123456",
      "customer": { /* customer details */ },
      "items": [ /* list of ordered items */ ],
      "status": "confirmed",
      "totalPrice": 100.00,
      "createdAt": "2024-01-01T12:00:00Z"
      // ... other order fields
    }
  }
]

Dependencies

  • Requires an active connection to the OTTO Market API using a valid API authentication token configured in the node credentials.
  • The node depends on the OTTO Market API being accessible and responsive.
  • No additional external services are required beyond the OTTO Market API.

Troubleshooting

  • Common issues:

    • Invalid or missing order identifier: Ensure that the "Order Identifier" property is correctly set and corresponds to an existing order in OTTO Market.
    • Authentication errors: Verify that the API key or authentication token provided in the node credentials is valid and has sufficient permissions.
    • Network or API downtime: Check connectivity to the OTTO Market API endpoint and confirm the service status.
  • Common error messages:

    • 404 Not Found: The specified order ID does not exist. Double-check the order identifier.
    • 401 Unauthorized: Authentication failed due to invalid credentials. Update the API key/token.
    • 500 Internal Server Error: Temporary issue on the OTTO Market side; retry after some time.

Links and References

Discussion