Get a List of Note Comments
Name | Type | Description | Required |
---|---|---|---|
Action | String | NoteComments | Required |
EntityType | int | The entity type of the EntityId. | Required |
EntityId | int | This is the Id of the entity you’d like to view the notes of. | Required |
Response Codes
Code | Message | Information |
---|---|---|
0 | There are no notes associated with the passed entityId | |
0 | ||
2 | The entityid is missing or is an invalid format | |
2 | The entityType is missing or is an invalid format | |
2 | Invalid Parameter value - SyncStatus |
Example
- Request
- Response
Request URL
https://webservice.bigchange.com/v01/services.ashx?action=NoteComments&EntityType=1&EntityId=27889151
Response Data
{ "Code": 0, "Result": [ { "CommentCreationDate": "2024-10-16 10:44:32", "CommentEntityId": 27889151, "CommentEntityType": 1, "CommentId": 177006025, "CommentOwnerId": 37758, "CommentOwnerName": "Joe Bloggs", "CommentText": "New comment" }, { "CommentCreationDate": "2024-10-16 10:44:38", "CommentEntityId": 27889151, "CommentEntityType": 1, "CommentId": 177006026, "CommentOwnerId": 37758, "CommentOwnerName": "Joe Bloggs", "CommentText": "Another comment" } ] }