get-team
Retrieve a Shortcut team's details by public ID, with options to fetch all fields or a slim version, using API integration for streamlined project management.
Instructions
Get a Shortcut team by public ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
full | No | True to return all team fields from the API. False to return a slim version that excludes uncommon fields | |
teamPublicId | Yes | The public ID of the team to get |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"full": {
"default": false,
"description": "True to return all team fields from the API. False to return a slim version that excludes uncommon fields",
"type": "boolean"
},
"teamPublicId": {
"description": "The public ID of the team to get",
"type": "string"
}
},
"required": [
"teamPublicId"
],
"type": "object"
}