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 operation, Project List Servers, interacts with the mittwald mStudio API to retrieve a list of servers associated with a specific project or customer. It is useful for scenarios where you need to programmatically fetch server details for management, monitoring, or reporting purposes within a project context.
For example, a user might want to:
- Retrieve all servers under their organization to display in a dashboard.
- Filter servers by search terms such as ID or description to find specific resources.
- Paginate through large sets of servers when dealing with many entries.
Properties
Name | Meaning |
---|---|
Customer Id | ID of the Organization to list PlacementGroups for. If not provided, defaults to the executing User's ID. |
Limit | Maximum number of server records to return (default: 10000). |
Page | The page number of results to retrieve (default: 1). |
Skip | Number of records to skip before starting to collect the result set (default: 0). |
Search Term | Text to filter servers by searchable fields: id, shortId, and description. |
Output
The node outputs JSON data containing the list of servers matching the query parameters. Each item in the output array represents a server with its associated properties as returned by the mittwald mStudio API.
If the API supports binary data related to servers (e.g., configuration files or logs), it would be included in the binary output field; however, this operation primarily returns JSON data about servers.
Dependencies
- Requires an API key credential for authentication with the mittwald mStudio API.
- The base URL for API requests is
https://api.mittwald.de
. - The node uses standard HTTP headers for JSON content negotiation (
Accept
andContent-Type
set toapplication/json
).
Troubleshooting
- Authentication errors: Ensure that the API key credential is correctly configured and has sufficient permissions.
- Empty results: Verify that the
Customer Id
is correct or try omitting it to use the executing user's ID. Also, check if theSearch Term
filters out all results unintentionally. - Pagination issues: Adjust
Limit
,Page
, andSkip
values carefully to navigate through large datasets without missing or duplicating entries. - API rate limits or connectivity problems: Check network connectivity and API usage quotas.
Links and References
- mittwald mStudio API Documentation (official API docs, if publicly available)
- n8n documentation on HTTP Request Node for understanding API interactions in workflows