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 "Project List Project Memberships" retrieves a list of memberships associated with a specific project from the mittwald mStudio API. It is useful for scenarios where you need to manage or audit user roles and access within projects, such as displaying all members of a project, filtering by role, or checking membership expiry statuses.
Practical examples include:
- Listing all users who have access to a project along with their roles.
- Filtering memberships to find only those that are inherited or have an expiry date.
- Paginating through large membership lists using limit and skip parameters.
Properties
Name | Meaning |
---|---|
Limit | The maximum number of project memberships to return in one request (pagination control). |
Skip | The number of project memberships to skip before starting to collect the result set (offset for pagination). |
Has Expiry | Filter memberships based on whether they have an expiry date (true or false ). |
Is Inherited | Filter memberships based on whether they are inherited (true ) or directly assigned (false ). |
Role | Filter memberships by role. Options: Notset, Owner, Emailadmin, External. |
Output
The output JSON contains the list of project memberships matching the specified filters and pagination settings. Each item typically includes details about the member, their role, expiry status, and inheritance status.
If the node supports binary data output, it would represent any file or media content related to memberships, but this operation primarily returns structured JSON data about memberships.
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 beyond the configured API authentication.
Troubleshooting
Common issues:
- Incorrect or missing API credentials will cause authentication failures.
- Using invalid filter values (e.g., unsupported role names) may result in empty results or API errors.
- Pagination parameters (
limit
andskip
) must be non-negative integers; otherwise, the API might reject the request.
Error messages:
- Authentication errors usually indicate invalid or expired API keys; reconfigure credentials.
- Validation errors on query parameters suggest checking the property values for correctness.
- Network or timeout errors require verifying connectivity to the mittwald API endpoint.
Links and References
- mittwald mStudio API Documentation (official API docs)
- n8n documentation on API node configuration