mittwald icon

mittwald

Interact with mittwald mStudio API

Actions409

Overview

This node interacts with the mittwald mStudio API to list applications ("Apps") managed by the service. It is useful for scenarios where you want to retrieve a paginated list of apps, such as displaying available apps in a dashboard, syncing app data, or automating workflows based on app information.

For example, you might use this node to:

  • Fetch a limited number of apps to display in a user interface.
  • Skip a certain number of apps to paginate through large sets of data.
  • Retrieve a specific page of apps when integrating with other systems.

Properties

Name Meaning
Limit The maximum number of apps to return in the response. Set to 0 to return all available apps.
Skip Number of apps to skip before starting to collect the result set. Should be a multiple of Limit. Useful for pagination.
Page The page number to display. Has the same effect as Skip. If both Page and Skip are set, Skip takes precedence.

Output

The node outputs JSON data containing the list of apps retrieved from the mittwald mStudio API. Each item in the output corresponds to an app object with its associated properties as returned by the API.

No binary data output is produced by this node.

Dependencies

  • Requires an API key credential for authenticating with the mittwald mStudio API.
  • The base URL for API requests is https://api.mittwald.de.
  • The node expects JSON responses and sends requests with appropriate headers (Accept: application/json, Content-Type: application/json).

Troubleshooting

  • Empty results: If no apps are returned, verify that the account has apps available and that the Limit and Skip parameters are set correctly.
  • Pagination issues: Ensure that Skip is a multiple of Limit to avoid unexpected results.
  • Authentication errors: Confirm that the API key credential is valid and has sufficient permissions.
  • API connectivity: Check network access to https://api.mittwald.de and ensure no firewall or proxy is blocking requests.

Links and References

Discussion