Gitea icon

Gitea

Interact with Gitea via API

Actions393

Overview

This node operation allows users to search emails within the Admin resource of a system (likely Gitea, based on the bundled source). It performs a keyword-based search query against email records and supports pagination through page number and limit parameters. This is useful for administrators who need to filter or locate specific email addresses or related data quickly.

Practical examples include:

  • Searching for all emails containing a particular domain or username fragment.
  • Paginating through large sets of email results to manage or audit user communications.
  • Integrating with workflows that require validation or processing of email lists from the admin panel.

Properties

Name Meaning
Q Keyword string used to search/filter emails.
Page The page number of results to return (1-based index).
Limit The number of results per page (page size).

Output

The output consists of JSON data representing the search results of emails matching the query. Each item in the output JSON array corresponds to an email record found by the search. The structure typically includes fields relevant to each email entry, such as the email address and possibly associated metadata.

No binary data output is indicated for this operation.

Dependencies

  • Requires an API key credential for authentication to the target system's API.
  • The base URL for the API is configured via credentials.
  • The node uses HTTP GET requests with query parameters (q, page, limit) to perform the search.

Troubleshooting

  • Empty Results: If no emails are returned, verify that the keyword (Q) is correctly specified and matches existing data.
  • Pagination Issues: Ensure that Page and Limit values are positive integers; zero or negative values may cause unexpected behavior.
  • Authentication Errors: Confirm that the API key credential is valid and has sufficient permissions to access admin email data.
  • API Connectivity: Check network connectivity and correct base URL configuration if requests fail.

Links and References

Discussion