Shopware Admin icon

Shopware Admin

Consume Shopware Admin API

Actions10

Overview

This node integrates with the Shopware Admin API to manage various resources such as orders, products, and customers. Specifically for the Customer - Get operation, it retrieves detailed information about a single customer by their unique ID.

Common scenarios where this node is useful include:

  • Fetching customer details to display or process in workflows.
  • Integrating customer data retrieval into automated processes like CRM updates or support ticket enrichment.
  • Validating customer existence before performing further actions.

Example: You have a workflow that triggers when a new order is placed, and you want to fetch the customer's full profile to personalize communications or update external systems.

Properties

Name Meaning
ID The unique identifier of the customer to retrieve. This is required and must be provided as a string.

Output

The node outputs JSON data representing the customer object retrieved from the Shopware Admin API. The structure corresponds directly to the API's customer resource schema, typically including fields such as customer ID, email, first name, last name, and other customer-related attributes.

No binary data output is produced by this operation.

Dependencies

  • Requires an API key credential for authenticating with the Shopware Admin API.
  • The node expects the Shopware Admin API base URL to be configured within the credential.
  • Network access to the Shopware Admin API endpoint is necessary.

Troubleshooting

  • Error: "ID is required" or missing parameter error
    Ensure the "ID" property is set and not empty when using the Get operation.

  • API authentication errors
    Verify that the API key credential is correctly configured and has sufficient permissions to access customer data.

  • Resource not found or 404 errors
    Confirm that the provided customer ID exists in the Shopware system.

  • Unexpected response or empty output
    Check network connectivity and API availability. Also, verify that the API URL in credentials is correct.

Links and References

Discussion