mittwald icon

mittwald

Interact with mittwald mStudio API

Actions409

Overview

This node operation lists all invites associated with a specific Customer in the mittwald mStudio API. It is useful when you want to retrieve and manage invitations sent to or by a particular customer, for example, to audit access, resend invites, or display invite status in your workflow.

Practical examples:

  • Fetching all pending or accepted invites for a customer to monitor their access.
  • Integrating with other systems to synchronize invite data related to customers.
  • Automating notifications or follow-ups based on invite statuses.

Properties

Name Meaning
Customer Id The unique identifier of the Customer whose invites you want to list.
Limit (Optional) Maximum number of invite records to return.
Skip (Optional) Number of invite records to skip before starting to return results (offset).

Output

The node outputs JSON data containing the list of invites for the specified customer. Each invite record typically includes details such as invite ID, status, email, creation date, and possibly expiration or acceptance information depending on the API response.

If the API supports binary data for invites (e.g., attachments), it would be included accordingly, but this operation primarily returns structured JSON data about invites.

Dependencies

  • Requires an API key credential for authenticating with the mittwald mStudio API.
  • The node uses the base URL https://api.mittwald.de and expects JSON responses.
  • No additional external dependencies beyond the configured API authentication.

Troubleshooting

  • Invalid Customer Id: If the provided Customer Id does not exist or is malformed, the API may return an error or empty result. Verify the Customer Id is correct.
  • Authentication Errors: Missing or invalid API credentials will cause authentication failures. Ensure the API key credential is properly set up.
  • Rate Limits or Quotas: If many requests are made in a short time, the API might throttle requests. Implement retries or respect rate limits.
  • Limit and Skip Parameters: Providing negative values or excessively large numbers might cause errors or unexpected behavior. Use sensible pagination values.

Links and References

Discussion