get_project
Retrieve detailed information about a specific project by providing its ID, with options to include and expand additional fields for comprehensive insights.
Instructions
Get detailed information about a specific project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
expand | No | Fields to expand (comma-separated) | |
include | No | Additional fields to include (comma-separated) | |
project_id | Yes | The ID of the project to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"expand": {
"description": "Fields to expand (comma-separated)",
"type": "string"
},
"include": {
"description": "Additional fields to include (comma-separated)",
"type": "string"
},
"project_id": {
"description": "The ID of the project to retrieve",
"minimum": 1,
"type": "integer"
}
},
"required": [
"project_id"
],
"type": "object"
}