Get Team User

Retrieve a single team user by ID.
GET
/v2/team/users
Query Parameters
id uuid

Required

The team user ID to retrieve.

cURl example
curl -X GET 'https://lunarsend.com/api/v2/team/users?id=76f463d7-3107-4957-8b71-ab03acc319e2' \
  -H 'x-api-key: $LUNARSEND_API_KEY' \
  -H 'Accept: application/json'
Response
[
  {
    "status": "success",
    "id": "76f463d7-3107-4957-8b71-ab03acc319e2",
    "data": {
      "created_at": "2025-05-19T20:07:04.643689+00:00",
      "name": "John",
      "email": "john.doe@company.com",
      "display_name": "Jack",
      "user_id": "76f463d7-3107-4957-8b71-ab03acc319e2",
      "profile_picture": null
    }
  }
]
Response Fields
FieldTypeStatusFormatNotes
statusenum
successerror
read-only optional
--
idstring (uuid) - The ID from the request
read-only optional
uuidEchoes the requested user ID.
errorstring - Error description (only present on error)
read-only optional
--
dataobject
required
--
data.created_atstring (ISO 8601)
read-only optional
date-timeUser creation timestamp.
data.namestring
required
--
data.emailstring
required
email-
data.display_namestring
required
--
data.user_idstring (uuid)
read-only optional
uuidUser UUID inside the data object.
data.profile_picturestring (URL)
optional nullable
urlURL to the user's avatar; null if none is set.
Related Links