GET
/
v5
/
app
/
users
/
{id}
curl --request GET \
  --url https://{defaultHost}/v5/app/users/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "username": "<string>",
  "email": "<string>",
  "profile_pic_url": "<string>",
  "created_at": 123,
  "profile_pic_url_32": "<string>",
  "profile_pic_url_64": "<string>",
  "profile_pic_url_128": "<string>"
}

Authorizations

Authorization
string
header
required

App API key for /v5/app and /v5/company endpoints

Path Parameters

id
string
required

The ID of the User, which will look like user_*************

Response

200 - application/json
user found
id
string
required

The ID of the user, which will look like user_*************

username
string
required

The username of the user

created_at
number
required

The date the user was created.

name
string

The first and last name of the user.

email
string | null

The email of the user

profile_pic_url
string

The URL of the user's profile picture

profile_pic_url_32
string

The URL of the user's profile picture at 32x32 pixels

profile_pic_url_64
string

The URL of the user's profile picture at 64x64 pixels

profile_pic_url_128
string

The URL of the user's profile picture at 128x128 pixels