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 system software versions for a specified system software ID. It is useful when you need to retrieve version information about system software managed within the mittwald platform, such as for monitoring, auditing, or automation workflows that depend on specific software versions.
A practical example would be automating the retrieval of all available versions of a particular system software component to check for updates or compatibility before deployment.
Properties
Name | Meaning |
---|---|
System Software Id | The unique identifier of the system software whose versions you want to list. |
Version Range | (Optional) A filter specifying a range of versions to include in the results. |
Recommended | A boolean flag indicating whether to only include recommended versions (true ) or all versions (false ). |
Output
The node outputs JSON data containing the list of system software versions matching the provided criteria. Each item in the output typically includes details such as version number, release notes, and recommendation status.
If the node supports binary data output, it would represent associated files or artifacts related to the software versions, but based on the code and properties, this node primarily outputs JSON data.
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 are indicated beyond the API access.
Troubleshooting
- Missing or invalid System Software Id: Since this property is required, omitting it or providing an incorrect ID will likely cause errors or empty responses. Ensure the ID is correct and exists in the mittwald system.
- API authentication errors: If the API key credential is missing, expired, or invalid, the node will fail to authenticate. Verify the API key configuration in n8n credentials.
- Incorrect version range format: Providing an improperly formatted version range may result in no data returned or API errors. Confirm the expected format from mittwald API documentation.
- Network or connectivity issues: Failures to reach the API endpoint will cause errors; ensure network access to
api.mittwald.de
.
Links and References
- mittwald mStudio API Documentation (official API docs should be consulted for detailed parameter formats and response structures)
- n8n documentation on creating custom nodes for further customization guidance