Actions100
- Project Actions
- Project Accept Project Invite
- Project Create Project Invite
- Project List Invites For Project
- Project Create Project
- Project Decline Project Invite
- Project Delete Project Avatar
- Project Request Project Avatar Upload
- Project Delete Project Invite
- Project Get Project Invite
- Project Delete Project Membership
- Project Get Project Membership
- Project Update Project Membership
- Project Delete Project
- Project Get Project
- Project Delete Server Avatar
- Project Request Server Avatar Upload
- Project Get Project Token Invite
- Project Get Self Membership For Project
- Project Get Server
- Project List Memberships For Project
- Project List Project Invites
- Project List Project Memberships
- Project List Projects
- Project List Servers
- Project Resend Project Invite Mail
- Project Update Project Description
- Project Update Server Description
- Storagespace Get Project Statistics
- Storagespace Get Server Statistics
- Storagespace Replace Project Notification Threshold
- Storagespace Replace Server Notification Threshold
- Backup Actions
- Backup Create Project Backup Export
- Backup Delete Project Backup Export
- Backup Create Project Backup Schedule
- Backup List Project Backup Schedules
- Backup Create Project Backup
- Backup List Project Backups
- Backup Delete Project Backup Schedule
- Backup Get Project Backup Schedule
- Backup Update Project Backup Schedule
- Backup Delete Project Backup
- Backup Get Project Backup
- Backup Update Project Backup Description
- SSH SFTP User Actions
- Cronjob Actions
- App Actions
- App Execute Action
- App Get App
- App Get Appinstallation
- App Patch Appinstallation
- App Uninstall Appinstallation
- App Get Appversion
- App Get Installed Systemsoftware For Appinstallation
- App Get Missing Dependencies For Appinstallation
- App Get Systemsoftware
- App Get Systemsoftwareversion
- App Link Database
- App List Appinstallations For User
- App List Appinstallations
- App Request Appinstallation
- App List Apps
- App List Appversions
- App List Systemsoftwares
- App List Systemsoftwareversions
- App List Update Candidates For Appversion
- App Replace Database
- App Request Appinstallation Copy
- App Retrieve Status
- App Unlink Database
- App Set Database Users
- Project File System Actions
- Contract Actions
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
orserverId
is correct and that the account has access to those projects. - Pagination issues: Ensure
skip
is a multiple oflimit
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
, anddescription
fields.
Links and References
- mittwald mStudio API Documentation (official API docs)
- n8n documentation on API credentials