orgo_get_project
Retrieve project details including computers by name. Returns JSON with project ID, status, creation date, and desktop information.
Instructions
Get project details by name.
Returns full project information including all computers.
Args:
params (GetProjectInput): Input containing:
- name (str): Project name to look up
Returns:
str: JSON with project details:
{
"id": str,
"name": str,
"status": str,
"created_at": str,
"desktops": [{"id": str, "name": str, "status": str, ...}]
}
Examples:
- "Get details for my-project" -> params with name="my-project"
Error Handling:
- Returns "Error: Resource not found..." if project doesn't exist
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |