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

# The Thread Member Object

A Thread Member identifies a user or group who is taking part in the Message Thread. The thread will be visible in their task queue if it is not acknowledged.

```json theme={null}
{
  "id": 140758503522396,
  "thread": 140758503456859,
  "user": 64,
  "group": null,
  "status": "Requiring Action",
  "ack_time": null
}
```

| Attribute | Type     | Allowed Values                    | Description                                                                                                                                    |
| :-------- | :------- | :-------------------------------- | :--------------------------------------------------------------------------------------------------------------------------------------------- |
| id        | int      |                                   | The id of the thread member.                                                                                                                   |
| thread    | int      |                                   | The id of the thread this thread member is a member of.                                                                                        |
| user      | int      |                                   | The id of the user referenced by this thread member. <br /><br />Should only ever be one of either a user or group set for the thread member.  |
| group     | int      |                                   | The id of the group referenced by this thread member. <br /><br />Should only ever be one of either a user or group set for the thread member. |
| status    | string   | Addressed, <br />Requiring Action | Whether this member has acknowledged the message thread.                                                                                       |
| ack\_time | datetime |                                   | The time at which the member acknowledge the message thread.                                                                                   |
