List all user memberships
Returns a list of users and their roles within a team in your Fivetran account
Request schema
Path parameters
teamId
stringrequired
The unique identifier for the team within the account
example:
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:
active
boolean
Header parameters
Authorization
stringrequired
HTTP: basicAuth
HTTP AuthorizationScheme: basic
Accept
string
default:
example:
Http + 1.1
GET
https://api.fivetran.com/v1/teams/team_id/users
GET /v1/teams/team_id/users?cursor=vcDfgTEda6t&limit=100&active=null HTTP/1.1
Accept: application/json
Authorization: Basic REPLACE_BASIC_AUTH
Host: 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 return items
user_id
stringrequired
The unique identifier of user
example:
role
stringrequired
The user's role within the team
example:
created_at
stringrequired
The date and time the membership was created
format:
example:
nextCursor
string
The value of the cursor parameter for the next page
example:
{
"code": "Success",
"message": "Operation performed.",
"data": {
"items": [
{
"user_id": "user_id",
"role": "Team Member",
"created_at": "2023-08-20T10:15:20.677566Z"
}
],
"nextCursor": "cursor_value"
}
}