get_team
Retrieve team details, including name, users, and creation/modification dates, by specifying the unique team ID in BoldSign organization. Access team-specific properties for effective management.
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)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"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"
}