mittwald icon

mittwald

Interact with mittwald mStudio API

Actions409

Overview

This node operation "App List Appinstallations For User" retrieves a filtered list of app installations associated with a user. It is useful when you want to query and manage app installation data, for example, to display which apps a user has installed or to analyze app usage patterns.

Practical examples include:

  • Fetching all app installations for a user filtered by specific app IDs.
  • Searching app installations by keywords in fields like description or version.
  • Paginating through large sets of app installation records.

Properties

Name Meaning
App Ids IDs of Apps to filter for. Accepts a JSON array of app IDs to limit the results to those apps only.
Search Term A text string to filter app installations by searchable fields such as id, shortId, description, appVersion, and systemSoftwareVersion.
Limit Maximum number of app installation records to return in the response.
Skip Number of items to skip before starting to collect the result set. 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 output is a JSON array of app installation objects matching the specified filters and pagination parameters. Each object contains details about an individual app installation, including identifiers, descriptions, versions, and other metadata relevant to the app installation.

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 filter parameters (App Ids, Search Term) are correctly specified and match existing data.
  • Pagination issues: When using skip and limit, ensure skip is a multiple of limit to avoid unexpected results.
  • Authentication errors: Verify that the API key credential is valid and has the necessary permissions.
  • API rate limits or connectivity problems: Check network connectivity and API usage limits imposed by the mittwald service.

Links and References

Discussion