Actions7
Overview
The "Get Group Memberships" operation in the Roblox Cloud node retrieves membership information for a specified Roblox group. This is useful when you want to list or analyze the members of a particular group within Roblox, such as for community management, moderation, or analytics purposes.
Practical examples include:
- Fetching all members of a Roblox group to display on a website or dashboard.
- Filtering group members based on certain criteria (e.g., role or status).
- Paginating through large groups to process memberships in batches.
Properties
| Name | Meaning |
|---|---|
| Group ID | The unique identifier of the Roblox group whose memberships you want to retrieve. |
| Query Parameters | Optional parameters to control the request: |
| - Max Page Size | Maximum number of results returned per page (pagination size). |
| - Page Token | Token used to fetch the next page of results (for pagination). |
| - Filter | Optional filter expression to narrow down the memberships returned by the API. |
Output
The output JSON contains the retrieved group memberships data from the Roblox Cloud API. This typically includes an array of membership objects with details about each member, such as user IDs, roles, join dates, and other membership-related metadata.
If pagination is involved, the output may also include tokens or indicators to fetch subsequent pages.
No binary data output is expected from this operation.
Dependencies
- Requires an API key credential for authenticating requests to the Roblox Cloud API.
- The node uses the base URL
https://apis.roblox.comand sends requests with appropriate headers including the API key. - Proper configuration of the API key credential in n8n is necessary for successful execution.
Troubleshooting
- Missing or invalid Group ID: Ensure the Group ID is provided and correctly formatted; otherwise, the API will reject the request.
- API Key issues: Invalid or missing API key credentials will cause authentication errors. Verify that the API key is correctly set up in n8n.
- Pagination errors: Using an incorrect or expired page token may result in empty responses or errors. Use tokens exactly as returned by previous calls.
- Filter syntax errors: If using the filter parameter, ensure it matches the expected format supported by the Roblox API to avoid request failures.
Links and References
- Roblox Cloud API Documentation
- Roblox Groups API Reference (for detailed info on group memberships endpoints)