Actions73
- Repository Actions
- Issue Actions
- Pull Request Actions
- User Actions
- Organization Actions
- Release Actions
- Webhook Actions
- Branch Actions
- Commit Actions
- Tag Actions
Overview
This node interacts with the Forgejo API to list members of a specified organization. It is useful for retrieving all members belonging to an organization, which can help in managing team access, auditing members, or integrating member data into workflows. For example, it can be used to automate reporting of organization members or to synchronize member lists with other systems.
Use Case Examples
- List all members of an organization to audit access rights.
- Retrieve organization members to synchronize with an internal directory.
- Fetch members to notify them about an upcoming event or update.
Properties
| Name | Meaning |
|---|---|
| Organization | The name of the organization whose members are to be listed. |
| Additional Options | Optional parameters to control pagination such as page number and limit of results per page. |
Output
JSON
json- The JSON response containing the list of organization members.
Dependencies
- Forgejo API authentication credential
Troubleshooting
- Ensure the organization name is correct and the API credentials have sufficient permissions to access organization member data.
- If pagination parameters are set, verify that the page and limit values are within acceptable ranges to avoid empty or partial results.
- Common errors include authentication failures (check API key), invalid organization name (check spelling), and rate limiting by the Forgejo API (retry after some time).
Links
- Forgejo API Documentation - Official API documentation for Forgejo, useful for understanding available endpoints and parameters.