mittwald icon

mittwald

Interact with mittwald mStudio API

Actions100

Overview

This node interacts with the mittwald mStudio API to list projects associated with a specified customer or server. It is useful for retrieving project data in bulk or filtered by search terms, enabling automation workflows that need to process or analyze project information from mittwald's platform.

Common scenarios include:

  • Fetching all projects for a given customer organization.
  • Searching projects by ID, short ID, or description.
  • Paginating through large sets of projects to handle them in batches.

Example use cases:

  • Automatically syncing project lists into a CRM or database.
  • Generating reports on active projects per customer.
  • Triggering downstream processes based on project metadata.

Properties

Name Meaning
Customer Id ID of the Organization to list Projects for.
Server Id ID of the Server to list Projects for.
Search Term Search term to filter Projects by fields: id, shortId, and description.
Limit Maximum number of projects to return in the response (pagination limit).
Skip Number of items to skip; should be a multiple of limit (used for pagination offset).
Page Page number to display; functions similarly to skip. If both are set, skip takes precedence.

Output

The node outputs JSON data containing a list of projects matching the query parameters. Each project object typically includes identifiers and descriptive fields such as id, shortId, and description.

If binary data were involved, it would be summarized here, but this node only returns JSON project data.

Dependencies

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

Troubleshooting

  • Empty results: Verify that the customerId or serverId is correct and that the account has access to those projects.
  • Pagination issues: Ensure skip is a multiple of limit to avoid unexpected empty pages.
  • Authentication errors: Confirm the API key credential is valid and has necessary permissions.
  • Search not returning expected results: Remember the search applies only to id, shortId, and description fields.

Links and References

Discussion