Skip to main content
GET
/
users
/
{userId}
Get User
curl --request GET \
  --url https://api.lemlist.com/api/users/{userId} \
  --header 'Authorization: Basic <encoded-value>'
{
  "_id": "usr_QAucgYReK6EmMB3Cz",
  "email": "example@lemlist.co",
  "role": "admin",
  "linkedIn": {
    "status": true,
    "inviteLimit": 25,
    "sendLimit": 33,
    "visitLimit": 36
  },
  "mailboxes": [
    {
      "_id": "usm_bsdepN6jb8zftK9Ns",
      "email": "example@gmail.com",
      "provider": "google",
      "status": "ERROR",
      "lemlist": {
        "emailLimit": 50
      },
      "lemwarm": {
        "active": false
      }
    },
    {
      "_id": "usm_gPKrqoNxaXxScTpPh",
      "email": "example@outlook.com",
      "status": "ERROR",
      "lemlist": {
        "emailLimit": 50
      },
      "lemwarm": {
        "active": false
      }
    }
  ]
}
This endpoint uses the User object.
This endpoint retrieves all the information for a specific user via their userId.

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

userId
string
required

The unique identifier of the user

Response

Success

A team member account with connected email and/or LinkedIn sending capabilities.

_id
string

Unique user identifier

email
string<email>

User email address

role
string

User role in the team (admin, member, etc.)

linkedIn
object

LinkedIn integration settings

mailboxes
object[]

Email mailboxes connected to this user