mittwald icon

mittwald

Interact with mittwald mStudio API

Actions100

Overview

This node operation allows users to list Cronjobs associated with a specific Project in the mittwald mStudio API. It is useful for scenarios where you want to retrieve and manage scheduled tasks (Cronjobs) programmatically, such as monitoring job schedules, auditing, or integrating with other automation workflows.

For example, you might use this node to fetch all Cronjobs for a given project to display them in a dashboard or to trigger further processing based on their schedule or status.

Properties

Name Meaning
Project Id ID of the Project for which to list Cronjobs. This is required to specify the target project.
Limit The maximum number of Cronjob resources to return in the response. Default is 1000.
Skip Number of items to skip in the list. Should be a multiple of limit. Used for pagination.
Page Page number to display. Has similar effect as skip. If both are set, skip takes precedence.

Output

The output contains a JSON array of Cronjob objects retrieved from the mittwald mStudio API for the specified project. Each object represents a Cronjob with its details as provided by the API.

No binary data output is indicated for this operation.

Dependencies

  • Requires an API key credential for authentication with the mittwald mStudio API.
  • The node uses the base URL https://api.mittwald.de to make requests.
  • Proper configuration of the API key credential in n8n is necessary for successful execution.

Troubleshooting

  • Common issues:

    • Invalid or missing Project Id will result in errors or empty responses.
    • Incorrect API credentials or expired tokens will cause authentication failures.
    • Pagination parameters (limit, skip, page) not set correctly may lead to unexpected results or incomplete data.
  • Error messages:

    • Authentication errors typically indicate invalid API keys; verify and update credentials.
    • "Resource not found" or similar errors suggest the Project Id does not exist or is inaccessible.
    • Rate limiting errors may occur if too many requests are made in a short time; implement retries or backoff.

Links and References

Discussion