mittwald icon

mittwald

Interact with mittwald mStudio API

Actions409

Overview

This node interacts with the mittwald mStudio API to manage customer-related data. Specifically, the "Customer Delete Customer Invite" operation allows users to delete a customer invite by its unique identifier. This is useful in scenarios where an invitation sent to a customer needs to be revoked or removed, such as when an invite was sent by mistake or the customer no longer requires access.

Practical examples include:

  • Automatically cleaning up expired or unused customer invites.
  • Revoking access for a customer who should no longer receive invitations.
  • Managing customer onboarding workflows by programmatically deleting invites.

Properties

Name Meaning
Customer Invite Id The unique ID of the customer invite to be deleted. This is a required string input.

Output

The node outputs JSON data representing the response from the mittwald mStudio API after attempting to delete the specified customer invite. Typically, this will confirm whether the deletion was successful or provide error details if it failed.

If the API supports binary data responses (not indicated here), the node would handle that accordingly, but based on the provided code and operation, the output is expected to be JSON only.

Dependencies

  • Requires an API key credential for authenticating with the mittwald mStudio API.
  • The node uses the base URL https://api.mittwald.de for all requests.
  • The node depends on the @devlikeapro/n8n-openapi-node package for building properties and handling OpenAPI-based requests.
  • Proper configuration of the API authentication credentials within n8n is necessary.

Troubleshooting

  • Invalid or missing Customer Invite Id: Ensure the "Customer Invite Id" property is correctly set and corresponds to an existing invite.
  • Authentication errors: Verify that the API key credential is valid and has sufficient permissions.
  • Network issues: Check connectivity to https://api.mittwald.de.
  • API errors: If the API returns an error (e.g., invite not found), review the error message in the node output to adjust the input or check the invite status.

Links and References

Discussion