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 users. Specifically, the 'User' resource with the 'List' operation fetches a list of users from the Forgejo server. It supports pagination options to control the page number and the number of results per page. This node is useful for scenarios where you need to retrieve multiple user records, such as managing user data, displaying user lists, or integrating user information into workflows.
Use Case Examples
- Listing all users in an organization with pagination.
- Fetching a specific page of users with a limit on the number of users per page.
Properties
| Name | Meaning |
|---|---|
| Additional Options | Optional parameters to control pagination of the user list, including page number and limit of results per page. |
Output
JSON
json- The JSON response containing the list of users returned by the Forgejo API.
Dependencies
- Requires an API key credential for Forgejo API authentication.
Troubleshooting
- Common issues include authentication errors if the API key is invalid or missing.
- Pagination parameters may be ignored if automatic pagination is enabled, leading to fetching all pages regardless of the 'page' parameter.
- Errors from the Forgejo API are returned as error messages in the output JSON when 'Continue On Fail' is enabled.