mittwald icon

mittwald

Interact with mittwald mStudio API

Actions409

Overview

This node interacts with the Marketplace resource of the mittwald mStudio API, specifically to list contributors of extensions. It allows users to retrieve a paginated and sorted list of contributors, which can be useful for managing or displaying contributor information in workflows related to marketplace extensions.

Common scenarios include:

  • Fetching a list of extension contributors for display in dashboards.
  • Automating reports on contributors based on sorting or pagination criteria.
  • Integrating contributor data into other systems or processes.

Properties

Name Meaning
Limit The maximum number of contributors to return in the response.
Skip Number of contributors to skip; should be a multiple of Limit.
Page Page number to display; functions similarly to Skip. If both are set, Skip takes priority.
Sort Field by which to sort the results. Only option available is "Name".
Order Sort order direction: ascending ("Asc") or descending ("Desc"). Default is ascending.

Output

The node outputs JSON data containing the list of contributors retrieved from the Marketplace extension endpoint. Each item in the output JSON array represents a contributor with their associated details as provided by the API.

No binary data output is indicated.

Dependencies

  • Requires an API key credential for authentication with the mittwald mStudio API.
  • The base URL for API requests is https://api.mittwald.de.
  • The node uses standard HTTP headers for JSON content negotiation (Accept: application/json, Content-Type: application/json).

Troubleshooting

  • Empty or incomplete results: Ensure that the Limit, Skip, and Page parameters are set correctly and that the API key has sufficient permissions.
  • Authentication errors: Verify that the API key credential is valid and properly configured in n8n.
  • Sorting issues: Currently, only sorting by "Name" is supported; attempting to use other fields may result in errors or ignored parameters.
  • Pagination confusion: Using both Skip and Page simultaneously will prioritize Skip; avoid setting both unless intentional.

Links and References

Discussion