get_issue
Retrieve detailed information about a specific issue in a GitLab project using project ID and issue internal ID to access issue data and status.
Instructions
Get details of a specific issue in a GitLab project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | Project ID or URL-encoded path | |
| issue_iid | Yes | The internal ID of the project issue |
Input Schema (JSON Schema)
{
"properties": {
"issue_iid": {
"description": "The internal ID of the project issue",
"type": "number"
},
"project_id": {
"description": "Project ID or URL-encoded path",
"type": "string"
}
},
"required": [
"project_id",
"issue_iid"
],
"type": "object"
}