get_issue
Retrieve detailed information about a specific GitLab issue by providing the project identifier and issue internal ID.
Instructions
Get details of a specific issue
Input Schema
Name | Required | Description | Default |
---|---|---|---|
issue_iid | Yes | Issue internal ID | |
project_id | Yes | Project ID or path |
Input Schema (JSON Schema)
{
"properties": {
"issue_iid": {
"description": "Issue internal ID",
"type": "number"
},
"project_id": {
"description": "Project ID or path",
"type": "string"
}
},
"required": [
"project_id",
"issue_iid"
],
"type": "object"
}