Path parameters

idstringrequired

The ID of the user to retrieve.

Response

idstring

The unique identifier for this user.

objectstring

This will always contain project_user for this endpoint.

namestring | null

The name of this user.

emailstring

The email address for this user.

avatar_urlstring

The URL of the avatar image for this user.

created_atstring

The date and time when the user was created.

updated_atstring

The date and time when the user was updated.

import Blutui from 'blutui'

const blutui = new Blutui('ey....')

blutui.project('one').admin.users.get('9a1aa882-849c-43d1-bb32-dcefb907cf4e')
Response
{
  "id": "9a1aa882-849c-43d1-bb32-dcefb907cf4e",
  "object": "project_user",
  "name": null,
  "email": "user@blutui.test",
  "avatar_url": null,
  "created_at": "2023-08-14T16:49:46+12:00",
  "updated_at": "2023-08-14T16:49:46+12:00"
}

Was this helpful?