Gitea icon

Gitea

Interact with Gitea via API

Actions393

Overview

This node interacts with the Organization resource of a Gitea instance, specifically to retrieve details about a team within an organization. It is useful when you need to fetch information about a particular team by its unique identifier. For example, this can be used in automation workflows that manage or audit teams, synchronize team data with other systems, or trigger actions based on team membership or attributes.

Properties

Name Meaning
Id The unique numeric identifier of the team to retrieve. This is a required input and specifies which team's details will be fetched.

Output

The node outputs JSON data representing the team details retrieved from the Gitea API. This typically includes fields such as the team's id, name, description, permission level, and possibly members or related metadata depending on the API response. There is no indication that binary data is output by this node.

Dependencies

  • Requires an API key credential for authenticating with a Gitea instance.
  • The base URL of the Gitea server must be configured in the credentials.
  • The node uses the Gitea REST API v1 endpoint /api/v1 to perform requests.

Troubleshooting

  • Invalid Team Id: If the provided team id does not exist or is incorrect, the API will likely return a 404 error. Verify the team id before running the node.
  • Authentication Errors: Missing or invalid API credentials will cause authentication failures. Ensure the API key and base URL are correctly set in the node credentials.
  • Network Issues: Connectivity problems to the Gitea server will result in request failures. Check network access and server availability.
  • Permission Denied: The API user must have sufficient permissions to read team information; otherwise, the request may be denied.

Links and References

Discussion