# Get Team Info GET https://api.hellosign.com/v3/team/info Provides information about a team. Reference: https://developer.hellosign.com/api/team/info ## OpenAPI Specification ```yaml openapi: 3.1.1 info: title: Get Team Info version: endpoint_team.info paths: /team/info: get: operationId: info summary: Get Team Info description: Provides information about a team. tags: - - subpackage_team parameters: - name: team_id in: query description: The id of the team. required: false schema: type: string - name: Authorization in: header description: Basic authentication of the form `Basic `. required: true schema: type: string responses: '200': description: successful operation content: application/json: schema: $ref: '#/components/schemas/TeamGetInfoResponse' '400': description: failed_operation content: {} components: schemas: TeamParentResponse: type: object properties: team_id: type: string description: The id of a team name: type: string description: The name of a team TeamInfoResponse: type: object properties: team_id: type: string description: The id of a team team_parent: $ref: '#/components/schemas/TeamParentResponse' name: type: string description: The name of a team num_members: type: integer description: Number of members within a team num_sub_teams: type: integer description: Number of sub teams within a team WarningResponse: type: object properties: warning_msg: type: string description: Warning message warning_name: type: string description: Warning name required: - warning_msg - warning_name TeamGetInfoResponse: type: object properties: team: $ref: '#/components/schemas/TeamInfoResponse' warnings: type: array items: $ref: '#/components/schemas/WarningResponse' description: A list of warnings. required: - team ``` ## SDK Code Examples ```php PHP setUsername("YOUR_API_KEY"); // $config->setAccessToken("YOUR_ACCESS_TOKEN"); try { $response = (new Dropbox\Sign\Api\TeamApi(config: $config))->teamInfo( team_id: "4fea99bfcf2b26bfccf6cea3e127fb8bb74d8d9c", ); print_r($response); } catch (Dropbox\Sign\ApiException $e) { echo "Exception when calling TeamApi#teamInfo: {$e->getMessage()}"; } ``` ```csharp C# using System; using System.Collections.Generic; using System.IO; using System.Text.Json; using Dropbox.Sign.Api; using Dropbox.Sign.Client; using Dropbox.Sign.Model; namespace Dropbox.SignSandbox; public class TeamInfoExample { public static void Run() { var config = new Configuration(); config.Username = "YOUR_API_KEY"; // config.AccessToken = "YOUR_ACCESS_TOKEN"; try { var response = new TeamApi(config).TeamInfo( teamId: "4fea99bfcf2b26bfccf6cea3e127fb8bb74d8d9c" ); Console.WriteLine(response); } catch (ApiException e) { Console.WriteLine("Exception when calling TeamApi#TeamInfo: " + e.Message); Console.WriteLine("Status Code: " + e.ErrorCode); Console.WriteLine(e.StackTrace); } } } ``` ```typescript TypeScript import * as fs from 'fs'; import api from "@dropbox/sign" import models from "@dropbox/sign" const apiCaller = new api.TeamApi(); apiCaller.username = "YOUR_API_KEY"; // apiCaller.accessToken = "YOUR_ACCESS_TOKEN"; apiCaller.teamInfo( "4fea99bfcf2b26bfccf6cea3e127fb8bb74d8d9c", // teamId ).then(response => { console.log(response.body); }).catch(error => { console.log("Exception when calling TeamApi#teamInfo:"); console.log(error.body); }); ``` ```java Java package com.dropbox.sign_sandbox; import com.dropbox.sign.ApiException; import com.dropbox.sign.Configuration; import com.dropbox.sign.api.*; import com.dropbox.sign.auth.*; import com.dropbox.sign.JSON; import com.dropbox.sign.model.*; import java.io.File; import java.math.BigDecimal; import java.time.LocalDate; import java.time.OffsetDateTime; import java.util.ArrayList; import java.util.List; import java.util.Map; public class TeamInfoExample { public static void main(String[] args) { var config = Configuration.getDefaultApiClient(); ((HttpBasicAuth) config.getAuthentication("api_key")).setUsername("YOUR_API_KEY"); // ((HttpBearerAuth) config.getAuthentication("oauth2")).setBearerToken("YOUR_ACCESS_TOKEN"); try { var response = new TeamApi(config).teamInfo( "4fea99bfcf2b26bfccf6cea3e127fb8bb74d8d9c" // teamId ); System.out.println(response); } catch (ApiException e) { System.err.println("Exception when calling TeamApi#teamInfo"); System.err.println("Status code: " + e.getCode()); System.err.println("Reason: " + e.getResponseBody()); System.err.println("Response headers: " + e.getResponseHeaders()); e.printStackTrace(); } } } ``` ```ruby Ruby require "json" require "dropbox-sign" Dropbox::Sign.configure do |config| config.username = "YOUR_API_KEY" # config.access_token = "YOUR_ACCESS_TOKEN" end begin response = Dropbox::Sign::TeamApi.new.team_info( { team_id: "4fea99bfcf2b26bfccf6cea3e127fb8bb74d8d9c", }, ) p response rescue Dropbox::Sign::ApiError => e puts "Exception when calling TeamApi#team_info: #{e}" end ``` ```python Python import json from datetime import date, datetime from pprint import pprint from dropbox_sign import ApiClient, ApiException, Configuration, api, models configuration = Configuration( username="YOUR_API_KEY", # access_token="YOUR_ACCESS_TOKEN", ) with ApiClient(configuration) as api_client: try: response = api.TeamApi(api_client).team_info( team_id="4fea99bfcf2b26bfccf6cea3e127fb8bb74d8d9c", ) pprint(response) except ApiException as e: print("Exception when calling TeamApi#team_info: %s\n" % e) ``` ```go Team Get Info package main import ( "fmt" "net/http" "io" ) func main() { url := "https://api.hellosign.com/v3/team/info?team_id=4fea99bfcf2b26bfccf6cea3e127fb8bb74d8d9c" req, _ := http.NewRequest("GET", url, nil) req.Header.Add("Authorization", "Basic :") res, _ := http.DefaultClient.Do(req) defer res.Body.Close() body, _ := io.ReadAll(res.Body) fmt.Println(res) fmt.Println(string(body)) } ``` ```swift Team Get Info import Foundation let headers = ["Authorization": "Basic :"] let request = NSMutableURLRequest(url: NSURL(string: "https://api.hellosign.com/v3/team/info?team_id=4fea99bfcf2b26bfccf6cea3e127fb8bb74d8d9c")! as URL, cachePolicy: .useProtocolCachePolicy, timeoutInterval: 10.0) request.httpMethod = "GET" request.allHTTPHeaderFields = headers let session = URLSession.shared let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in if (error != nil) { print(error as Any) } else { let httpResponse = response as? HTTPURLResponse print(httpResponse) } }) dataTask.resume() ```