List All Teams
Returns a list of all teams within your Fivetran account
Request schema
Query parameters
cursor
string
Paging cursor, read more about pagination
example:
limit
integer
Number of records to fetch per page. Accepts a number in the range 1..1000; the default value is 100.
format:
example:
Header parameters
Authorization
stringrequired
HTTP: basicAuth
HTTP AuthorizationScheme: basic
Accept
string
default:
example:
Http + 1.1
GET
https://api.fivetran.com/v1/teams
GET /v1/teams?cursor=cursor_value&limit=100 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
items
arrayrequired
The collection of returned items
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:
next_cursor
string
The value of the cursor parameter for the next page
example:
{ "code": "Success", "message": "Operation performed.", "data": { "items": [ { "id": "team_id", "name": "Team Title", "description": "Team Description", "role": "Account Reviewer" } ], "next_cursor": "cursor_value" } }