GET api/2.0/project/{projectid}/message
Returns a list of all the messages in the discussions within a project with the ID specified in the request.
Name |
Description |
Type |
Example |
projectid
sent in url
|
Project ID
|
number
|
1234
|
GET api/2.0/project/1234/message
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
application/json
{
"status": 0,
"response": [
{
"canCreateComment": false,
"canEdit": true,
"id": 10,
"title": "Sample Title",
"description": null,
"projectOwner": {
"id": 123,
"title": "Sample project",
"status": 0,
"isPrivate": false
},
"commentsCount": 5,
"text": "Hello, this is sample message",
"status": 0,
"updatedBy": {
"id": "00000000-0000-0000-0000-000000000000",
"displayName": "Mike Zanyatski",
"title": "Manager",
"avatarSmall": "url to small avatar",
"profileUrl": ""
},
"created": "2023-01-27T05:35:45.2681334Z",
"createdBy": {
"id": "00000000-0000-0000-0000-000000000000",
"displayName": "Mike Zanyatski",
"title": "Manager",
"avatarSmall": "url to small avatar",
"profileUrl": ""
},
"updated": "2023-01-27T05:35:45.2681334Z"
}
]
}
text/xml
<result>
<status>0</status>
<response>
<canCreateComment>false</canCreateComment>
<canEdit>true</canEdit>
<id>10</id>
<title>Sample Title</title>
<description />
<projectOwner>
<id>123</id>
<title>Sample project</title>
<status>0</status>
<isPrivate>false</isPrivate>
</projectOwner>
<commentsCount>5</commentsCount>
<text>Hello, this is sample message</text>
<status>0</status>
<updatedBy>
<id>00000000-0000-0000-0000-000000000000</id>
<displayName>Mike Zanyatski</displayName>
<title>Manager</title>
<avatarSmall>url to small avatar</avatarSmall>
<profileUrl></profileUrl>
</updatedBy>
<created>2023-01-27T05:35:45.2681334Z</created>
<createdBy>
<id>00000000-0000-0000-0000-000000000000</id>
<displayName>Mike Zanyatski</displayName>
<title>Manager</title>
<avatarSmall>url to small avatar</avatarSmall>
<profileUrl></profileUrl>
</createdBy>
<updated>2023-01-27T05:35:45.2681334Z</updated>
</response>
</result>