Get Contact Notes by Contact
This web service allows you to retrieve the contact notes by Id or reference.
Query String Parameters
Name | Type | Description | Required |
---|---|---|---|
Action | String | ContactNotes | Required |
ContactId | Int | The unique identifier of the contact which can be retrieved using Contact List. | Required |
ContactRef | String | The internal reference of the contact. | Required |
FlagHistory | String | Include tags in the response. | Optional |
IncludeCustomFields | Bool | Include custom fields in the response. | Optional |
Response Codes
Example
- Request
- Response
Request URL
https://webservice.bigchange.com/v01/services.ashx?action=ContactNotes&ContactId=30966833
Response Data
{ "Code": 0, "Result": [ { "NoteId": 27095160, "NoteOwner": "Joe Bloggs", "NoteReference": "INT-27095160", "NoteTypeId": 10964, "NoteType": "Integration Error", "NoteStatus": "Open", "NoteSubject": "", "NoteText": "", "NoteCreationDate": "2023-08-30 10:38:32", "DueDate": null, "CompletionDate": null, "NoteCurrentFlag": null }, { "NoteId": 27095154, "NoteOwner": "Joe Bloggs", "NoteReference": "INT-27095154", "NoteTypeId": 10964, "NoteType": "Integration Error", "NoteStatus": "Open", "NoteSubject": "Some Subject text", "NoteText": "Some Note text", "NoteCreationDate": "2023-08-30 10:12:41", "DueDate": null, "CompletionDate": null, "NoteCurrentFlag": null } ] }