Retrieve current user
GETapi.blutui.com/v1/user
Retrieve the currently authenticated user.
Response
import Blutui from 'blutui'
const blutui = new Blutui('ey....')
blutui.user.get(){
  "id": "9c0d7ef9-277e-4360-8fcf-0815853e22a9",
  "object": "user",
  "name": "Luke Skywalker",
  "two_factor_enabled": true,
  "created_at": 1690330767,
  "updated_at": 1703633941
}idstring
The unique identifier for this user.
objectstring
This will always contain user for this endpoint.
namestring
The user's full name.
two_factor_enabledboolean
Determine if the user has enabled two factor authentication.
created_attimestamp
The user's created at timestamp.
updated_attimestamp
The user's updated at timestamp.
Last updated on