Gitea integration (Developer Tools). Imported from open-connector.
{base_url}/user
/user/repos
| Param | Type | Required | Description |
|---|---|---|---|
| page | integer | optional | Page number of results to return. |
| limit | integer | optional | Maximum number of results to return. |
/repos/{owner}/{repo}
| Param | Type | Required | Description |
|---|---|---|---|
| owner | string | required | Owner of the repository. |
| repo | string | required | Name of the repository. |
/repos/search
| Param | Type | Required | Description |
|---|---|---|---|
| query | string | required | Keyword used to search repositories. |
| topic | boolean | optional | Whether to limit the keyword search to repository topics. |
| includeDescription | boolean | optional | Whether the keyword should also search repository descriptions. |
| ownerId | integer | optional | Only search repositories owned by or contributed to by this user ID. |
| priorityOwnerId | integer | optional | Repository owner ID to prioritize in the results. |
| teamId | integer | optional | Only search repositories that belong to this team ID. |
| starredByUserId | integer | optional | Only search repositories starred by this user ID. |
| private | boolean | optional | Whether private repositories accessible to the token should be included. |
| template | boolean | optional | Whether template repositories accessible to the token should be included. |
| archived | boolean | optional | Whether archived repositories should be included. |
| mode | string | optional | Repository mode filter. |
| exclusive | boolean | optional | When ownerId is set, whether to restrict results to repositories the user owns. |
| sort | string | optional | Sort field used by the repository search endpoint. |
| order | string | optional | Sort order. |
| page | integer | optional | Page number of results to return. |
| limit | integer | optional | Maximum number of results to return. |
/repos/{owner}/{repo}/issues
| Param | Type | Required | Description |
|---|---|---|---|
| owner | string | required | Owner of the repository. |
| repo | string | required | Name of the repository. |
| state | string | optional | Issue state filter. |
| labels | array | optional | Label names or IDs used to filter issues. |
| query | string | optional | Search string used to filter issues. |
| milestones | array | optional | Milestone names or IDs used to filter issues. |
| since | string | optional | Timestamp in ISO 8601 / RFC 3339 format. |
| before | string | optional | Timestamp in ISO 8601 / RFC 3339 format. |
| createdBy | string | optional | Only return issues created by this username. |
| assignedBy | string | optional | Only return issues assigned to this username. |
| mentionedBy | string | optional | Only return issues mentioning this username. |
| page | integer | optional | Page number of results to return. |
| limit | integer | optional | Maximum number of results to return. |
/repos/{owner}/{repo}/issues/{issueNumber}
| Param | Type | Required | Description |
|---|---|---|---|
| owner | string | required | Owner of the repository. |
| repo | string | required | Name of the repository. |
| issueNumber | integer | required | Issue number within the repository. |
/repos/{owner}/{repo}/issues/{issueNumber}/comments
| Param | Type | Required | Description |
|---|---|---|---|
| owner | string | required | Owner of the repository. |
| repo | string | required | Name of the repository. |
| issueNumber | integer | required | Issue number within the repository. |
| since | string | optional | Timestamp in ISO 8601 / RFC 3339 format. |
| before | string | optional | Timestamp in ISO 8601 / RFC 3339 format. |
/repos/{owner}/{repo}/issues/{issueNumber}/comments
| Param | Type | Required | Description |
|---|---|---|---|
| owner | string | required | Owner of the repository. |
| repo | string | required | Name of the repository. |
| issueNumber | integer | required | Issue number within the repository. |
| body | string | required | Comment body. |