mittwald icon

mittwald

Interact with mittwald mStudio API

Actions409

Overview

This node interacts with the mittwald mStudio API to list articles based on various filtering criteria. It is useful for scenarios where you need to retrieve a filtered list of articles from the mittwald system, such as fetching articles by specific tags, template names, or article IDs. For example, you might use this node to display a catalog of articles that match certain templates or tags in an automated workflow.

Properties

Name Meaning
Customer Id A customer identifier (not currently used).
Tags Filter articles by one or more tags (JSON array).
Template Names Filter articles by one or more template names (JSON array).
Article Ids Filter articles by one or more article IDs (JSON array).
Orderable Filter articles by orderable status (JSON array; can include null).
Name Filter articles by name (string).
Limit Maximum number of articles to return in the response (number).
Skip Number of items to skip in the result set; should be a multiple of limit (number).
Page Page number to display; if both page and skip are set, skip takes precedence (number).

Output

The node outputs a JSON object containing the list of articles matching the specified filters. The structure typically includes article details such as IDs, names, tags, templates, and orderable status. There is no indication that binary data is returned by 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.
  • No additional external dependencies are indicated beyond the API access.

Troubleshooting

  • Empty results: If the output contains no articles, verify that the filter parameters (tags, template names, article IDs, etc.) are correct and correspond to existing articles.
  • Invalid pagination: Ensure that the skip value is a multiple of limit. Using inconsistent values may cause unexpected results.
  • Authentication errors: Confirm that the API key credential is correctly configured and has sufficient permissions.
  • Malformed JSON inputs: When providing JSON arrays (e.g., for tags or article IDs), ensure valid JSON syntax to avoid request failures.

Links and References

Discussion