Get Company Note List
Get Company Note List
POST
[PlatformAddress]/api/1.0/contact?action=getCompanyNoteList
Fetches a list of notes for a specific company.
Path Parameters
Name | Type | Description |
---|---|---|
companyId | integer | The unique identifier of the company to which the company notes belong |
perPage | integer | The number of company notes to fetch |
start | integer | The starting result of the page. Note this is zero based (i.e. sending start=0 will start from the first result.) |
The result from this call will be a collection of company note to which the user has access. This call also accepts the pagination and filter properties.
Example Request
Fetches a list of Notes for a specific Company
Company Note
Property | Type | Description |
---|---|---|
id | integer | The unique id of the company note |
companyId | integer | The id of the company to which the company note belongs |
noteText | string | The company note |
createdByUserId | integer | The details of person who created the company note |
createdDate | timestamp | The date & time the company note was created |
modifiedDate | timestamp | The date & time the company note was last modified |
Last updated