Shopware Admin icon

Shopware Admin

Consume Shopware Admin API

Actions10

Overview

This node integrates with the Shopware Admin API to manage e-commerce resources such as orders, products, and customers. Specifically for the Order - Get operation, it retrieves detailed information about a single order by its unique ID.

Common scenarios where this node is useful include:

  • Fetching order details for processing or review in an automated workflow.
  • Integrating order data into external systems like CRMs or ERPs.
  • Triggering follow-up actions based on specific order information.

For example, you might use this node to get an order's status and customer details after a purchase is made, then send a notification email or update inventory accordingly.

Properties

Name Meaning
ID The unique identifier of the order to retrieve. This is required to specify which order's details should be fetched.

Output

The node outputs a JSON object representing the order data retrieved from the Shopware Admin API. The structure corresponds directly to the API response for an order resource, typically including fields such as order ID, customer info, line items, totals, status, and timestamps.

No binary data output is produced by this operation.

Dependencies

  • Requires an active connection to the Shopware Admin API via an API key credential configured in n8n.
  • The node uses the base API URL and authentication credentials provided by the user’s Shopware Admin API credential setup.
  • No additional external dependencies are needed beyond the Shopware Admin API access.

Troubleshooting

  • Missing or invalid ID: If the "ID" property is empty or incorrect, the API call will fail to find the order. Ensure the correct order ID is provided.
  • Authentication errors: If the API credentials are missing, expired, or invalid, the node will throw an authentication error. Verify that the Shopware Admin API credential is correctly configured.
  • API endpoint errors: Network issues or incorrect API URLs can cause request failures. Confirm the API URL in the credentials matches your Shopware instance.
  • Error messages: Errors returned from the API will be included in the node output if "Continue On Fail" is enabled; otherwise, they will stop execution with a descriptive message.

Links and References

Discussion