GET
/
users
Get information about the calling user.
curl --request GET \
  --url https://api.comfy.org/users \
  --header 'Authorization: Bearer <token>'
{
  "email": "<string>",
  "id": "<string>",
  "isAdmin": true,
  "isApproved": true,
  "name": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

OK

email
string

The email address for this user.

id
string

The unique id for this user.

isAdmin
boolean

Indicates if the user has admin privileges.

isApproved
boolean

Indicates if the user is approved.

name
string

The name for this user.