get_team
Retrieve detailed information about a specific Coolify team using its unique ID, enabling DevOps teams to access team configuration and management data.
Instructions
Get details of a specific team. Requires a team ID obtained from list_teams.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
team_id | Yes | ID of the team to retrieve. This is typically a numeric ID obtained from the list_teams response. |
Input Schema (JSON Schema)
{
"properties": {
"team_id": {
"description": "ID of the team to retrieve. This is typically a numeric ID obtained from the list_teams response.",
"examples": [
"0",
"1",
"42"
],
"type": "string"
}
},
"required": [
"team_id"
],
"type": "object"
}