mittwald icon

mittwald

Interact with mittwald mStudio API

Actions409

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, filtering by search terms, and controlling pagination and sorting of results. Typical use cases include automating project management workflows, integrating project data into dashboards, or syncing project information with other systems.

For example, you might use this node to:

  • Fetch all projects for a particular customer to display in a custom report.
  • Search projects by description or ID to find specific entries.
  • Paginate through large sets of projects when building an integration that processes them incrementally.

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 (default 10000).
Skip Number of items to skip; should be a multiple of limit. Used for pagination.
Page Page number to display; similar effect as skip. If both set, skip takes precedence.
Sort Field to sort the results by. Options: Created At, Description.
Order Sort order direction. Options: Ascending (default), Descending.

Output

The node outputs a JSON array of project objects retrieved from the mittwald mStudio API. Each object represents a project with its associated metadata such as IDs, descriptions, creation dates, and other relevant fields as provided by the API.

No binary data output is produced by this node.

Dependencies

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

Troubleshooting

  • Empty results: Ensure the Customer Id or Server Id is correct and that the user has permission to access those projects.
  • Pagination issues: When using skip and page, remember that if both are set, skip takes precedence. Make sure skip is a multiple of limit.
  • API errors: Check that the API key credential is valid and has not expired. Also verify network connectivity to the API endpoint.
  • Invalid search term: The search only applies to certain fields (id, shortId, description). Using unsupported fields will yield no results.

Links and References

Discussion