PUT api/2.0/project/message/{messageid}
Updates the selected message in the discussion within a project with the ID specified in the request.
Name |
Description |
Type |
Example |
messageid
sent in url
|
Message ID
|
number
|
1234
|
projectid
sent in body
|
Project ID
|
number
|
1234
|
title
sent in body
|
Discussion title
|
string
|
some text
|
content
sent in body
|
New message text
|
string
|
some text
|
participants
sent in body
|
New user IDs (GUIDs) separated with ','
|
string
|
some text
|
notify
sent in body
|
Notifies participants about a message or not
optional
|
Bool value
|
true
|
PUT api/2.0/project/message/1234
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
{
"projectid": 1234,
"title": "some text",
"content": "some text",
"participants": "some text",
"notify": null
}