Actions100
- Project Actions
- Project Accept Project Invite
- Project Create Project Invite
- Project List Invites For Project
- Project Create Project
- Project Decline Project Invite
- Project Delete Project Avatar
- Project Request Project Avatar Upload
- Project Delete Project Invite
- Project Get Project Invite
- Project Delete Project Membership
- Project Get Project Membership
- Project Update Project Membership
- Project Delete Project
- Project Get Project
- Project Delete Server Avatar
- Project Request Server Avatar Upload
- Project Get Project Token Invite
- Project Get Self Membership For Project
- Project Get Server
- Project List Memberships For Project
- Project List Project Invites
- Project List Project Memberships
- Project List Projects
- Project List Servers
- Project Resend Project Invite Mail
- Project Update Project Description
- Project Update Server Description
- Storagespace Get Project Statistics
- Storagespace Get Server Statistics
- Storagespace Replace Project Notification Threshold
- Storagespace Replace Server Notification Threshold
- Backup Actions
- Backup Create Project Backup Export
- Backup Delete Project Backup Export
- Backup Create Project Backup Schedule
- Backup List Project Backup Schedules
- Backup Create Project Backup
- Backup List Project Backups
- Backup Delete Project Backup Schedule
- Backup Get Project Backup Schedule
- Backup Update Project Backup Schedule
- Backup Delete Project Backup
- Backup Get Project Backup
- Backup Update Project Backup Description
- SSH SFTP User Actions
- Cronjob Actions
- App Actions
- App Execute Action
- App Get App
- App Get Appinstallation
- App Patch Appinstallation
- App Uninstall Appinstallation
- App Get Appversion
- App Get Installed Systemsoftware For Appinstallation
- App Get Missing Dependencies For Appinstallation
- App Get Systemsoftware
- App Get Systemsoftwareversion
- App Link Database
- App List Appinstallations For User
- App List Appinstallations
- App Request Appinstallation
- App List Apps
- App List Appversions
- App List Systemsoftwares
- App List Systemsoftwareversions
- App List Update Candidates For Appversion
- App Replace Database
- App Request Appinstallation Copy
- App Retrieve Status
- App Unlink Database
- App Set Database Users
- Project File System Actions
- Contract Actions
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, such as fetching specific apps installed by a user or searching through app installations based on various criteria.
Practical examples include:
- Listing 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 using limit, skip, or page parameters.
Properties
Name | Meaning |
---|---|
App Ids | IDs of Apps to filter for. Accepts an array of app IDs to narrow down the results to specific apps. |
Search Term | A text string to filter app installations. Searches within fields: 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 JSON contains a list of app installation objects matching the query parameters. Each object typically includes details such as installation ID, app version, system software version, description, and other metadata related to the app installation.
No binary data output is indicated for this operation.
Dependencies
- Requires an API key credential for authentication to the mittwald mStudio API.
- The node uses the base URL
https://api.mittwald.de
to send requests. - The node depends on the
@devlikeapro/n8n-openapi-node
package for OpenAPI integration.
Troubleshooting
- Empty results: Ensure that the filter parameters (appIds, searchTerm) are correctly specified and match existing data.
- Pagination issues: When using
skip
, ensure it is a multiple oflimit
to avoid unexpected results. - Authentication errors: Verify that the API key credential is valid and has necessary permissions.
- Invalid JSON input: For the
appIds
property, ensure the JSON array is well-formed.
Links and References
- mittwald mStudio API Documentation (assumed base URL)
- n8n OpenAPI Node integration documentation (for understanding OpenAPI-based nodes)