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 perform various operations related to organizations, specifically listing teams within an organization. It is useful for users who want to retrieve and manage organizational data such as teams, members, repositories, and more. For example, it can be used to list all teams in a given organization, which helps in managing team structures and permissions programmatically.
Use Case Examples
- List all teams in a specific organization to audit team memberships and roles.
- Retrieve teams to synchronize with an external system or dashboard.
Properties
| Name | Meaning |
|---|---|
| Organization | The name of the organization for which to list teams, required for the operation. |
| 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 teams in the specified organization.
Dependencies
- Requires an API key credential for Forgejo API authentication.
Troubleshooting
- Ensure the organization name is correctly specified and exists in the Forgejo instance.
- Check API credentials and permissions to access organization data.
- Pagination parameters should be set correctly to avoid missing data or excessive requests.
Links
- Forgejo API Documentation - Official API documentation for Forgejo, useful for understanding available endpoints and parameters.