get_project
Retrieve detailed information about a specific project using its ID or key, enabling efficient management and access to Backlog project resources via API integration.
Instructions
Returns information about a specific project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
projectIdOrKey | Yes | Project ID or project key |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"projectIdOrKey": {
"description": "Project ID or project key",
"type": [
"string",
"number"
]
}
},
"required": [
"projectIdOrKey"
],
"type": "object"
}