PUT api/2.0/project/message/{messageid}
Updates the selected message in the discussion within the 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
|
Message text
|
string
|
some text
|
participants
sent in body
|
IDs (GUIDs) of users separated with ','
|
string
|
some text
|
notify
sent in body
|
Notify participants
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
}