> For the complete documentation index, see [llms.txt](https://docs.buzzy.buzz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.buzzy.buzz/developing-and-extending-buzzy/buzzy-rest-api/rest-api/user-and-organization-operations/readteammember.md).

# readteammember

### description

Reads a specific team member by team ID and user ID

### parameters

The `X-Auth-Token` and `X-User-Id` are derived from the values `authToken` and `userId` returned from the login endpoint and are used in the HTTP header.

```
{
        "teamID": "<team ID>",
        "userID": "<user ID of the team member>"
}
```

### response

Returns the team member data including role and membership details.

### example

<pre><code><strong>POST /api/readteammember 
</strong>X-Auth-Token:&#x3C;insert token here>
X-User-Id:&#x3C;insert user id here>

{
        "teamID": "&#x3C;team ID>",
        "userID": "&#x3C;user ID of the team member>"
}
</code></pre>

You should get back:

```
{
    "status": "success",
    "body": {
        "teamID": "<team ID>",
        "userID": "<user ID>",
        "role": "<member role>",
        "joinedAt": "<membership start timestamp>",
        "updatedAt": "<last update timestamp>"
    }
}
```

***
