GET api/entity/person/bulletin/GetComments
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
BulletinIDs | Collection of integer |
None. |
Body Parameters
None.
Response Information
Resource Description
WebMethodResultOfListOfBulletinCommentName | Description | Type | Additional information |
---|---|---|---|
Result | Collection of BulletinComment |
None. |
|
Success | boolean |
None. |
|
ErrorText | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "Result": [ { "ID": 1, "BulletinBoardItemID": 2, "PersonID": 3, "Comment": "sample string 4", "CreatedAsString": "2025-05-05T05:21:04.2899808-06:00", "LocalDisplayDateAsString": "2025-05-05T05:21:04.2899808-06:00" }, { "ID": 1, "BulletinBoardItemID": 2, "PersonID": 3, "Comment": "sample string 4", "CreatedAsString": "2025-05-05T05:21:04.2899808-06:00", "LocalDisplayDateAsString": "2025-05-05T05:21:04.2899808-06:00" } ], "Success": true, "ErrorText": "sample string 2" }
application/javascript
Sample:
{"Result":[{"ID":1,"BulletinBoardItemID":2,"PersonID":3,"Comment":"sample string 4","CreatedAsString":"2025-05-05T05:21:04.2899808-06:00","LocalDisplayDateAsString":"2025-05-05T05:21:04.2899808-06:00"},{"ID":1,"BulletinBoardItemID":2,"PersonID":3,"Comment":"sample string 4","CreatedAsString":"2025-05-05T05:21:04.2899808-06:00","LocalDisplayDateAsString":"2025-05-05T05:21:04.2899808-06:00"}],"Success":true,"ErrorText":"sample string 2"}
application/xml, text/xml
Sample:
<WebMethodResultOfListOfBulletinComment xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Success>true</Success> <ErrorText>sample string 2</ErrorText> <Result> <BulletinComment> <ID>1</ID> <BulletinBoardItemID>2</BulletinBoardItemID> <PersonID>3</PersonID> <Comment>sample string 4</Comment> <CreatedAsString>2025-05-05T05:21:04.2899808-06:00</CreatedAsString> <LocalDisplayDate>2025-05-05T05:21:04.2899808-06:00</LocalDisplayDate> <LocalDisplayDateAsString>2025-05-05T05:21:04.2899808-06:00</LocalDisplayDateAsString> <Created>2025-05-05T05:21:04.2899808-06:00</Created> </BulletinComment> <BulletinComment> <ID>1</ID> <BulletinBoardItemID>2</BulletinBoardItemID> <PersonID>3</PersonID> <Comment>sample string 4</Comment> <CreatedAsString>2025-05-05T05:21:04.2899808-06:00</CreatedAsString> <LocalDisplayDate>2025-05-05T05:21:04.2899808-06:00</LocalDisplayDate> <LocalDisplayDateAsString>2025-05-05T05:21:04.2899808-06:00</LocalDisplayDateAsString> <Created>2025-05-05T05:21:04.2899808-06:00</Created> </BulletinComment> </Result> </WebMethodResultOfListOfBulletinComment>