get_project
Retrieve a specific Bitbucket project using its unique key to access project details and manage repository information directly from your workspace.
Instructions
Get a single project by its key.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_key | Yes | The key of the project. |
Input Schema (JSON Schema)
{
"properties": {
"project_key": {
"description": "The key of the project.",
"type": "string"
}
},
"required": [
"project_key"
],
"type": "object"
}