List All Users
Returns a list of all users within your Fivetran account.
Request schema
Query parameters
Paging cursor, read more about pagination
Number of records to fetch per page. Accepts a number in the range 1..1000; the default value is 100.
Header parameters
HTTP: basicAuth
HTTP AuthorizationScheme: basic
GET /v1/users?cursor=af3gu4hSDdF&limit=100&active=SOME_BOOLEAN_VALUE HTTP/1.1
Accept: application/json
Authorization: Basic REPLACE_BASIC_AUTH
Host: api.fivetran.com
Responses
Successful response schema
Response status code
Response status text
The collection of returned items
The unique identifier for the group within the Fivetran system.
The email address that the user has associated with their user profile.
The field indicates whether the user has verified their email address in the account creation process.
The field indicates whether the user has been invited to your account.
The user's avatar as a URL link (for example, 'http://mycompany.com/avatars/john_white.png') or base64 data URI (for example, 'data:image/png;base64,aHR0cDovL215Y29tcGFueS5jb20vYXZhdGFycy9qb2huX3doaXRlLnBuZw==')
The phone number of the user.
The group role that you would like to assign this new user to. Supported group roles: ‘Destination Administrator‘, ‘Destination Reviewer‘, ‘Destination Analyst‘, ‘Connector Creator‘, or a custom destination role
The boolean value indicating the user's status. If the user is able to log in, the value is true. If the user's account has been suspended, the value is false
The first name of the user.
The timestamp of when the group was created in your account.
The last name of the user.
The last time that the user has logged into their Fivetran account.
The value of the cursor parameter for the next page
{
"code": "Success",
"message": "Operation performed.",
"data": {
"items": [
{
"id": "user_id",
"email": "user@email.value",
"verified": true,
"invited": false,
"picture": "AFg65aoa7af4r3feaAa6bi7sfgse== ... base64 encoded image",
"phone": "+1234567890",
"role": "Account Administrator",
"active": true,
"given_name": "John",
"created_at": "2024-01-01T00:00:00Z",
"family_name": "Doe",
"logged_in_at": "2024-01-01T00:00:00Z"
}
],
"next_cursor": "cursor_value"
}
}