4b3471151a8b

latestOpenAPI 3.1.02026-08-1084336455.2 KB
Users

Get User

Authorization scope: user:list

Get user by id

get/v1/accounts/{account_id}/users/{user_id}

Path parameters

account_idstring required
user_idstring required

Response

Successful Response

user_idstring required

The user id

user_emailstring required

The email of the user

user_namestring required

The user name

environmentsobject required

The user environments and permission

is_adminboolean required

A flag that indicates whether the flag is admin

is_global_operatorboolean

Indicates if the user is a global operator (read-only cross-account)

statusstring required

The user status

created_atstring date-time nullable

The user creation date

last_loginstring date-time nullable

The user's last login date

updated_atstring date-time nullable

The user last update date

groupsstring[]

The user's groups

sourcestring required

The user source

invited_bystring nullable

The user who invited this user

is_activeboolean nullable

Indicates if the user is active

is_super_adminboolean required

Indicates if the user is a super admin

is_super_admin_creatorboolean required

Indicates if the user is a super admin creator

allow_login_passwordboolean required

Indicates if the user is allowed to login with password

allow_login_googleboolean required

Indicates if the user is allowed to login with google

allow_login_ssoboolean required

Indicates if the user is allowed to login with SSO

Example response

{
  "user_id": "5f887c764c40e5598f717676",
  "user_email": "user@rivey.io",
  "user_name": "John Doe",
  "environments": {
    "5f887c764c40e5598f717676": {
      "role": "admin"
    }
  },
  "is_admin": true,
  "status": "active",
  "created_at": "2026-08-10T14:41:14.529768",
  "last_login": "2026-08-10T14:41:14.529768",
  "updated_at": "2026-08-10T14:41:14.529768",
  "groups": [
    "5f887c764c40e5598f717676"
  ],
  "source": "rivery",
  "invited_by": "invite@rivey.io",
  "onboarding": {
    "know_rivery_step": {
      "onboarding_river_types": {
        "status": true,
        "update_time": "2026-08-10T14:41:14.529768"
      },
      "onboarding_rivery_introduction": {
        "status": true,
        "update_time": "2026-08-10T14:41:14.529768"
      }
    },
    "data_connections_step": {
      "onboarding_add_connection": false
    },
    "data_pipeline_step": {
      "onboarding_create_s2t": false,
      "onboarding_view_activities": false
    }
  },
  "allow_login_password": true,
  "allow_login_google": true,
  "allow_login_sso": true
}