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
| Field | Type | Status | Format | Notes |
|---|---|---|---|---|
| status | enum successerror | read-only optional | - | - |
| id | string (uuid) - The ID from the request | read-only optional | uuid | Echoes the requested user ID. |
| error | string - Error description (only present on error) | read-only optional | - | - |
| data | object | required | - | - |
| data.created_at | string (ISO 8601) | read-only optional | date-time | User creation timestamp. |
| data.name | string | required | - | - |
| data.email | string | required | - | |
| data.display_name | string | required | - | - |
| data.user_id | string (uuid) | read-only optional | uuid | User UUID inside the data object. |
| data.profile_picture | string (URL) | optional nullable | url | URL to the user's avatar; null if none is set. |