Client notes within Trackops allow users the capability to store conversations, meeting notes, or other important client-specific information.
Listing Client Notes
Returns a collection of client note records, optionally filtered by the available request parameters.
GET /api/v1/client/notes
Available Request Parameters:
Name | Type | Required | Description |
id | integer | no | ID of the note. |
author | integer | no | ID of the author (user). |
date_from | date | no | Note authored on or after the date (Alias: From). |
date_to | date | no | Note authored on or before the date (Alias: To). |
created_from | timestamp | no | Created on or after the date, as determined by the system. |
created_to | timestamp | no | Created on or before the date, as determined by the system. |
updated_from | timestamp | no | Updated on or after the date, as determined by the system. |
updated_to | timestamp | no | Updated on or before the date, as determined by the system. |
Note: All timestamp parameters are queried and returned in UTC.
Getting a Client Note
Returns a single client note record, based on the numeric ID.
GET /api/v1/client/notes/{note_id}