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 updates the App Id of an existing Cronjob in the Mittwald mStudio API. It is useful when you need to change the application associated with a scheduled Cronjob without recreating it. For example, if you have a Cronjob that triggers tasks for a specific app and you want to switch it to another app, this operation allows you to update the Cronjob's app reference directly.
Properties
Name | Meaning |
---|---|
Cronjob Id | The unique identifier of the Cronjob to update. This tells the node which Cronjob to modify. |
App Id | The new App Id to assign to the specified Cronjob. This changes the app linked to the Cronjob. |
Output
The node outputs JSON data representing the updated Cronjob object as returned by the Mittwald mStudio API. This typically includes the Cronjob's details such as its ID, updated App Id, schedule, and other metadata. There is no indication that binary data is output 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 all requests. - The node depends on the
@devlikeapro/n8n-openapi-node
package for OpenAPI integration. - Proper configuration of the API credential within n8n is necessary for successful execution.
Troubleshooting
- Invalid or missing Cronjob Id: If the provided Cronjob Id does not exist or is incorrect, the API will likely return an error indicating the resource was not found. Verify the Cronjob Id before running the node.
- Invalid App Id: Providing an invalid or unauthorized App Id may cause the update to fail. Ensure the App Id exists and the API user has permission to assign it.
- Authentication errors: Missing or incorrect API credentials will result in authentication failures. Confirm that the API key credential is correctly set up in n8n.
- Network issues: Connectivity problems to
https://api.mittwald.de
can cause request failures. Check network access and proxy settings if applicable.
Links and References
- Mittwald mStudio API Documentation (official API docs, if publicly available)
- n8n OpenAPI Node Integration (for understanding how OpenAPI nodes work in n8n)