get_team
Retrieve detailed team information from your BoldSign organization, including team name, users, and creation date, by specifying the unique team ID.
Instructions
Retrieve detailed information about an existing team in your BoldSign organization. This API provides access to team-specific properties, such as team name, users, created date, and modified date, by specifying the unique team ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
teamId | Yes | Required. The unique identifier (ID) of the team to retrieve. This can be obtained from the list teams tool. |
Input Schema (JSON Schema)
{
"properties": {
"teamId": {
"description": "Required. The unique identifier (ID) of the team to retrieve. This can be obtained from the list teams tool.",
"type": "string"
}
},
"required": [
"teamId"
],
"type": "object"
}