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 allows users to list executions of a specific Cronjob from the mittwald mStudio API. It is useful for monitoring and auditing scheduled tasks by retrieving detailed execution records, including filtering by status, date range, pagination, and sorting order. Practical applications include tracking job success/failure rates, analyzing execution durations, or debugging issues with scheduled processes.
Properties
Name | Meaning |
---|---|
Cronjob Id | The unique identifier of the Cronjob whose executions you want to list (required). |
Limit | Maximum number of execution records to return in one response. |
Skip | Number of execution records to skip before starting to collect the results (for pagination). |
Page | Page number of results to retrieve (alternative pagination method). |
Since | Start date/time filter to only include executions after this timestamp. |
Until | End date/time filter to only include executions before this timestamp. |
Status | Filter executions by their status. Options include "Complete" and potentially others. |
Triggered By User | Boolean flag to filter executions triggered manually by a user (true/false). |
Sort Order | Order in which to sort the returned executions. Options: Oldest First, Newest First, Slowest First, Fastest First. |
Output
The node outputs a JSON array containing the list of Cronjob execution objects retrieved from the API. Each object typically includes details such as execution ID, status, start and end timestamps, duration, and trigger source. This structured data can be used downstream for reporting, alerting, or further automation steps.
No binary data output is indicated for this operation.
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
- Missing or invalid Cronjob Id: The operation requires a valid Cronjob Id; ensure it is provided and correct.
- API authentication errors: Verify that the API key credential is correctly configured and has sufficient permissions.
- Pagination issues: If no results are returned, check the
limit
,skip
, andpage
parameters to ensure they are set appropriately. - Date filters format: The
since
anduntil
properties expect valid date/time strings; incorrect formats may cause errors or empty results. - Status filter mismatch: Using an unsupported status value might result in no data; use documented status options like "Complete".
- Network connectivity: Ensure the n8n instance can reach the mittwald API endpoint without firewall or proxy issues.
Links and References
- mittwald mStudio API Documentation (official API docs for more details on endpoints and parameters)
- n8n documentation on Using API Credentials