Retrieve User Details
Returns a user object if a valid identifier was provided.
Request schema
Path parameters
The unique identifier for the user within the account.
Header parameters
HTTP: basicAuth
HTTP AuthorizationScheme: basic
GET /v1/users/userId 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 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.
{
"code": "Success",
"message": "Operation performed.",
"data": {
"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"
}
}