mittwald icon

mittwald

Interact with mittwald mStudio API

Actions409

Overview

This node interacts with the mittwald mStudio API to list container stacks within a specified project. It is useful for users who want to retrieve and manage container stack information programmatically from their mittwald projects. Typical use cases include automation of infrastructure monitoring, inventory management of container stacks, or integration with other systems that require up-to-date container stack data.

For example, a user might want to list all container stacks in a project to display them in a dashboard or to trigger further workflows based on the stack details.

Properties

Name Meaning
Project Id ID of the Project to list Stacks for. This is required to specify which project's stacks to retrieve.
Limit The maximum number of stack resources to return in the response. Defaults to 1000.
Skip Number of items to skip in the list. Useful for pagination; should be a multiple of limit.
Page Page number to display. Functions similarly to skip. If both page and skip are set, skip takes precedence.

Output

The node outputs JSON data representing the list of container stacks retrieved from the mittwald mStudio API. Each item in the output array corresponds to a container stack resource with its associated properties as returned by the API.

No binary data output is indicated or expected from 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 for API 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 retrieval.
  • Error messages:

    • Authentication errors typically indicate invalid or missing API keys; verify and update credentials.
    • "Project not found" or similar errors suggest the provided Project Id does not exist or is inaccessible; confirm the Project Id.
    • Rate limiting or server errors from the API may require retrying after some time or checking API usage limits.

Links and References

Discussion