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=null 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 return items
The unique identifier for the user 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 role that you would like to assign to the user
The field indicates if the user is an active Fivetran account user.
The first name of the user.
The timestamp that the user created their Fivetran 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": true,
"picture": "AFg65aoa7af4r3feaAa6bi7se ... base64 encoded image ... blDFSs87gQ==",
"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"
}
],
"nextCursor": "cursor_value"
}
}