Skip to main content
PUT
/
api
/
2.0
/
thread_members
/
{id}
/
Update Thread Member
curl --request PUT \
  --url https://sandbox.elationemr.com/api/2.0/thread_members/{id}/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "ack_time": "2023-11-07T05:31:56Z",
  "group": 123,
  "thread": 123,
  "user": 123
}
'
{
  "ack_time": "2023-11-07T05:31:56Z",
  "group": 123,
  "id": 123,
  "thread": 123,
  "user": 123
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

id
integer<int64>
required

Body

application/json
status
enum<string>
required

Whether this member has acknowledged the message thread.

Available options:
Addressed,
Requiring Action
ack_time
string<date-time>

The time at which the member acknowledged the message thread.

group
integer<int64> | null

The id of the group referenced by this thread member. Should only ever be one of either a user or group set for the thread member.

thread
integer<int64>

The id of the thread this thread member is a member of.

user
integer | null

The id of the user referenced by this thread member. Should only ever be one of either a user or group set for the thread member.

Response

200 - application/json
status
enum<string>
required

Whether this member has acknowledged the message thread.

Available options:
Addressed,
Requiring Action
ack_time
string<date-time>

The time at which the member acknowledged the message thread.

group
integer<int64> | null

The id of the group referenced by this thread member. Should only ever be one of either a user or group set for the thread member.

id
integer
read-only
thread
integer<int64>

The id of the thread this thread member is a member of.

user
integer | null

The id of the user referenced by this thread member. Should only ever be one of either a user or group set for the thread member.