mittwald icon

mittwald

Interact with mittwald mStudio API

Actions409

Overview

This node interacts with the mittwald mStudio API to list customer invites. Specifically, for the "Customer" resource and the "Customer List Customer Invites" operation, it retrieves a paginated list of customer invitations. This is useful in scenarios where you want to manage or audit pending or sent invites associated with customers in the mittwald system.

Practical examples include:

  • Fetching all outstanding customer invites to send reminders.
  • Displaying invite statuses in a dashboard.
  • Automating follow-up workflows based on invite data.

Properties

Name Meaning
Limit The maximum number of invites to return (pagination limit).
Skip The number of invites to skip before starting to collect the result set (pagination offset).

Output

The node outputs JSON data representing the list of customer invites retrieved from the mittwald API. Each item in the output corresponds to a customer invite record, typically including details such as invitee information, status, and timestamps.

No binary data output is indicated by the source code.

Dependencies

  • Requires an API key credential for authenticating with the mittwald mStudio API.
  • The base URL for API requests is https://api.mittwald.de.
  • The node expects JSON responses and sends requests with appropriate headers (Accept: application/json, Content-Type: application/json).

Troubleshooting

  • Common issues:

    • Invalid or missing API credentials will cause authentication failures.
    • Exceeding rate limits imposed by the mittwald API may result in errors or throttling.
    • Providing invalid values for Limit or Skip (e.g., negative numbers) might cause unexpected results or API errors.
  • Error messages:

    • Authentication errors typically indicate problems with the provided API key; verify that the correct key is configured.
    • HTTP 4xx or 5xx errors suggest issues with request parameters or server-side problems; check the Limit and Skip values and retry later if needed.

Links and References

Discussion