Retrieves all notes, optionally filtered via OData query options.
Request Information
URI Parameters :
None.
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the list of notes.
db_notes| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier | |
| db_table_id |
Table Id db notes linked to |
globally unique identifier |
Optionally required : db_table_id or db_table_name must be provided |
| id_in_table |
Item id on the given table on which db note linked to |
globally unique identifier |
Required |
| user_id |
Created User ID |
globally unique identifier |
Optionally required : user_id, user_code or user must be provided |
| date_add |
Date Added. Auto-filled by NOW if empty |
date | |
| dateutc_add |
Date UTC Added |
date | |
| notes |
Notes |
string |
Required |
| source_db_table_id |
Identifier of the database table this note originated from, when generated via integration/automation. |
globally unique identifier | |
| source_id_in_table |
Primary key of the source record (in the table identified by ) this note originated from. |
globally unique identifier | |
| updated_by_user_id |
Foreign key of the user who last updated this note. |
globally unique identifier | |
| date_update |
Local date and time this note was last updated. |
date | |
| dateutc_update |
UTC date and time this note was last updated. |
date | |
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date |
Response Formats
application/json, text/json
{
"id": "4d69c948-7e92-4ccb-8fc5-440763db4bf1",
"db_table_id": "dea5cb11-77aa-4138-97bd-41577e6f4f15",
"id_in_table": "c00ae6c6-7961-4a9a-b584-dbb93871113d",
"user_id": "73aa7cad-89e9-42a1-8a39-be4579e055c9",
"date_add": "2026-09-16T08:33:20.0023324+00:00",
"dateutc_add": "2026-09-16T08:33:20.0023324+00:00",
"notes": "sample string 7",
"source_db_table_id": "05338ebf-50b7-472f-9023-4a25701f1403",
"source_id_in_table": "a3da25cc-e040-48c3-9171-ab071b17fc7d",
"updated_by_user_id": "8c298b54-2e3d-47f4-b879-7bf69c9af7b7",
"date_update": "2026-09-16T08:33:20.0023324+00:00",
"dateutc_update": "2026-09-16T08:33:20.0023324+00:00",
"modified_dateutc": "2026-09-16T08:33:20.0023324+00:00"
}
application/xml, text/xml
<db_notes xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <date_add>2026-09-16T08:33:20.002Z</date_add> <date_update>2026-09-16T08:33:20.002Z</date_update> <dateutc_add>2026-09-16T08:33:20.002Z</dateutc_add> <dateutc_update>2026-09-16T08:33:20.002Z</dateutc_update> <db_table_id>dea5cb11-77aa-4138-97bd-41577e6f4f15</db_table_id> <id>4d69c948-7e92-4ccb-8fc5-440763db4bf1</id> <id_in_table>c00ae6c6-7961-4a9a-b584-dbb93871113d</id_in_table> <modified_dateutc>2026-09-16T08:33:20.002Z</modified_dateutc> <notes>sample string 7</notes> <source_db_table_id>05338ebf-50b7-472f-9023-4a25701f1403</source_db_table_id> <source_id_in_table>a3da25cc-e040-48c3-9171-ab071b17fc7d</source_id_in_table> <updated_by_user_id>8c298b54-2e3d-47f4-b879-7bf69c9af7b7</updated_by_user_id> <user_id>73aa7cad-89e9-42a1-8a39-be4579e055c9</user_id> </db_notes>