> ## Documentation Index
> Fetch the complete documentation index at: https://dronebundle.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Team Member

> Retrieve a single team member by ID.

Requires an API key with `read_only` or `full_access` scope.

## Path parameters

<ParamField path="teamMemberId" type="string" required>
  The unique identifier of the team member.
</ParamField>

## Response

<ResponseField name="id" type="string">
  User ID.
</ResponseField>

<ResponseField name="email" type="string">
  Email address.
</ResponseField>

<ResponseField name="first_name" type="string | null">
  First name.
</ResponseField>

<ResponseField name="last_name" type="string | null">
  Last name.
</ResponseField>

<ResponseField name="role" type="string">
  Workspace role (`root`, `project_manager`, `ops_lead`, `pilot`, `client`).
</ResponseField>

<ResponseField name="title" type="string | null">
  Job title.
</ResponseField>

<ResponseField name="phone_number" type="string | null">
  Phone number.
</ResponseField>

<ResponseField name="profile_picture" type="string | null">
  Profile picture URL.
</ResponseField>

<ResponseField name="created" type="number">
  Unix timestamp (milliseconds) when the member was added.
</ResponseField>

<ResponseField name="updated" type="number">
  Unix timestamp (milliseconds) when the member was last updated.
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET https://api.dronebundle.com/v1/team/03144892-6021-705a-08f2-8e147cff3f28 \
    -H "Authorization: Bearer v1_your_api_key_here"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "id": "03144892-6021-705a-08f2-8e147cff3f28",
    "email": "john@example.com",
    "first_name": "John",
    "last_name": "Smith",
    "role": "pilot",
    "title": "Senior Pilot",
    "phone_number": "+45 12345678",
    "profile_picture": null,
    "created": 1743400000000,
    "updated": 1743400000000
  }
  ```
</ResponseExample>

## Errors

**404 Not Found** - Team member not found.

```json theme={null}
{
  "message": "User not found"
}
```
