get-label
Retrieve detailed information about a specific label within a Plane project by providing the project ID and label ID.
Instructions
Get detailed information about a specific label
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| label_id | Yes | ID of the label to retrieve | |
| project_id | Yes | ID of the project containing the label |
Input Schema (JSON Schema)
{
"properties": {
"label_id": {
"description": "ID of the label to retrieve",
"type": "string"
},
"project_id": {
"description": "ID of the project containing the label",
"type": "string"
}
},
"required": [
"project_id",
"label_id"
],
"type": "object"
}