Create a team
Creates a new team in your Fivetran account
Request schema
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
POST
https://api.fivetran.com/v1/teams
POST /v1/teams HTTP/1.1
Accept: application/json
Authorization: Basic REPLACE_BASIC_AUTH
Content-Type: application/json
Host: api.fivetran.com
Content-Length: 92
{
"name": "Team Title",
"description": "Team Description",
"role": "Account Analyst"
}
Responses
201
default 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"
}
}