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 allows users to create a new cronjob within a specified project using the mittwald mStudio API. It is useful for automating scheduled tasks such as triggering webhooks, running periodic jobs, or sending notifications at defined intervals. For example, you could use this node to set up a cronjob that calls a URL every 5 minutes to sync data between systems or to send reminder emails on a schedule.
Properties
Name | Meaning |
---|---|
Project Id | The ID of the project where the cronjob will be created. |
Active | Whether the cronjob should be active immediately after creation (true/false). |
App Id | Identifier of the application associated with the cronjob. |
Description | A textual description of the cronjob’s purpose or details. |
Destination | JSON object specifying the destination URL and related settings where the cronjob calls. |
Optional email address to notify about cronjob events or failures. | |
Interval | Cron expression defining how often the cronjob runs (e.g., "*/5 * * * *" for every 5 min). |
Timeout | Timeout duration in seconds for the cronjob execution before it is considered failed. |
Output
The node outputs JSON data representing the created cronjob resource as returned by the mittwald mStudio API. This typically includes details such as the cronjob ID, status, configuration parameters, and timestamps. There is no binary output.
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. - Proper network access to the mittwald API endpoint is necessary.
Troubleshooting
- Invalid Project Id or App Id: Ensure the provided IDs exist and are correct; otherwise, the API may return errors indicating resource not found.
- Malformed Destination JSON: The destination property must be valid JSON; invalid JSON will cause request failures.
- Incorrect Cron Expression: The interval must be a valid cron syntax string; invalid expressions will be rejected by the API.
- Timeout Issues: Setting timeout too low might cause premature job failures; adjust according to expected job duration.
- Authentication Errors: Verify that the API key credential is correctly configured and has sufficient permissions.
Links and References
- Mittwald mStudio API Documentation (official API docs)
- Cron Expression Syntax Guide (for crafting valid intervals)