Update a Team
Updates information for an existing 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:
Request
name
string
The name of the team within your account
example:
description
string
The description of the team within your account
example:
role
string
The account role of the team
example:
Http + 1.1
PATCH
https://api.fivetran.com/v1/teams/teamId
PATCH /v1/teams/teamId HTTP/1.1 Accept: application/json Authorization: BasicContent-Type: application/json Host: api.fivetran.com Content-Length: 91 { "name": "Team Name", "description": "Team description", "role": "Account Analyst" }
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" } }