Gitea icon

Gitea

Interact with Gitea via API

Actions393

Overview

This node interacts with an Organization resource to list activity feeds for a specified organization. It is useful for retrieving recent or historical activities related to an organization, such as updates, events, or changes that have occurred on a given date. Practical applications include monitoring organizational activity for reporting, auditing, or triggering workflows based on specific events.

Properties

Name Meaning
Org The name of the organization whose activity feeds you want to retrieve.
Date The specific date for which to find activities (formatted as a string).
Page The page number of results to return, starting at 1 (used for pagination).
Limit The number of results per page to return (page size).

Output

The node outputs JSON data containing the list of activity feed entries for the specified organization and date. Each entry typically includes details about individual activities or events associated with the organization. The output structure corresponds to the API response for activity feeds and can be used downstream in workflows for further processing or analysis.

No binary data output is indicated by the source code.

Dependencies

  • Requires an API key credential for authenticating requests to the external service.
  • The base URL for the API must be configured in the node credentials.
  • The node sends HTTP requests to the API endpoint /api/v1 with appropriate query parameters (date, page, limit) to fetch activity feeds.

Troubleshooting

  • Empty or missing activity feeds: Ensure the organization name is correct and that there are activities recorded for the specified date.
  • Pagination issues: If no results appear, verify that the page and limit values are set correctly and within valid ranges.
  • Authentication errors: Confirm that the API key credential is valid and has sufficient permissions to access organization activity feeds.
  • Invalid date format: The date property should be formatted according to the API’s expected date string format; otherwise, the request may fail or return no data.

Links and References

  • Refer to the external API documentation for the Organization resource and its activity feeds endpoint for detailed information on supported query parameters and response formats.
  • Consult n8n documentation on configuring API key credentials and using HTTP request nodes for additional context on authentication and request setup.

Discussion