Skip to main content
GET
/
v1
/
users
/
{userId}
Get User
curl --request GET \
  --url https://app.untetherlabs.com/api/v1/users/{userId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "type": "user",
  "name": "<string>",
  "email": "<string>",
  "status": "onboarding"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

userId
string<uuid>
required

Response

id
string<uuid>
required
type
enum<string>
required
Available options:
user,
bot
name
string
required
email
string
required
status
enum<string>
required
Available options:
onboarding,
active,
dismissed,
inactive