mittwald icon

mittwald

Interact with mittwald mStudio API

Actions100

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, and page parameters to ensure they are set appropriately.
  • Date filters format: The since and until 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

Discussion