Retrieve Team Details
Returns information for a given team within your Fivetran account
Request schema
Path parameters
teamId
stringrequired
The unique identifier for the team within the account.
example:
Header parameters
Authorization
stringrequired
HTTP: basicAuth
HTTP AuthorizationScheme: basic
Accept
string
default:
example:
Http + 1.1
GET
https://api.fivetran.com/v1/teams/teamId
GET /v1/teams/teamId HTTP/1.1 Accept: application/json Authorization: BasicHost: api.fivetran.com
Responses
200
Successful response
Successful response schema
code
stringrequired
Response status code
example:
message
string
Response status text
example:
data
objectrequired
id
stringrequired
The unique identifier for the team within your account
example:
name
string
The name of the team within your account
example:
description
string
The description of the team within your account
example:
role
stringrequired
The account role of the team
example:
{ "code": "Success", "message": "Operation performed.", "data": { "id": "team_id", "name": "Team Title", "description": "Team Description", "role": "Account Reviewer" } }