mittwald icon

mittwald

Interact with mittwald mStudio API

Actions409

Overview

This node operation allows you to list extension instances within a specified context in the Marketplace resource. It is useful for retrieving detailed information about extensions that are installed or available in either a project or a customer context. Typical use cases include managing and auditing extensions, filtering extensions by specific criteria, and paginating through large sets of extension instances.

For example, you might use this node to:

  • Retrieve all extension instances associated with a particular project.
  • Search for extension instances matching a search term within a customer context.
  • Paginate through extension instances with sorting and ordering options.

Properties

Name Meaning
Context The scope in which to list extension instances. Options: Project, Customer.
Context Id The ID of the project or customer to filter the extension instances by.
Extension Id Filter results by a specific extension's ID.
Search Term A text string to search/filter extension instances.
Anchor An anchor string used for pagination or cursor-based navigation.
Limit Maximum number of extension instances to return in the response.
Skip Number of items to skip; should be a multiple of Limit for proper pagination.
Page Page number to display; behaves similarly to Skip. If both are set, Skip takes precedence.
Sort JSON array specifying fields to sort the results by (e.g., ["createdAt"]).
Order JSON array specifying sort order corresponding to each field in Sort (e.g., ["asc"]).

Output

The node outputs a JSON object containing a list of extension instances matching the query parameters. Each item in the list represents an extension instance with its associated metadata as returned by the API. The exact structure depends on the API response but typically includes identifiers, status, creation date, and other relevant details about each extension instance.

No binary data output is indicated for this operation.

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 results: Ensure that the Context Id is correct and corresponds to an existing project or customer.
  • Pagination issues: When using Skip and Limit, ensure Skip is a multiple of Limit to avoid unexpected results.
  • Invalid JSON in Sort or Order: These properties expect valid JSON arrays; malformed JSON will cause errors.
  • Authentication errors: Verify that the API key credential is correctly configured and has sufficient permissions.
  • API rate limits or connectivity issues: Check network connectivity and API usage limits if requests fail or time out.

Links and References

Discussion