Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
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 | globally unique identifier | ||
| source_id_in_table | globally unique identifier | ||
| updated_by_user_id | globally unique identifier | ||
| date_update | date | ||
| dateutc_update | date | ||
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date |
Response Formats
application/json, text/json
Sample:
{
"id": "9e1b7598-7411-47f4-a3b5-4c83bba4f7c6",
"db_table_id": "d4e1233e-9dd7-47ab-a66e-f2cf63988f85",
"id_in_table": "b401cddc-b263-41fc-8a4e-941089e58157",
"user_id": "a7ba6a99-5ad6-4341-b635-a9fb7a44d792",
"date_add": "2026-01-11T21:01:32.4877689+00:00",
"dateutc_add": "2026-01-11T21:01:32.4877689+00:00",
"notes": "sample string 7",
"source_db_table_id": "6d7c96ad-48c6-4e0f-8f63-fa55085c0333",
"source_id_in_table": "4a7c931f-1fe4-48fd-9e80-cda23552b753",
"updated_by_user_id": "621b6db6-5df0-464a-9d87-1b848a8220ff",
"date_update": "2026-01-11T21:01:32.4877689+00:00",
"dateutc_update": "2026-01-11T21:01:32.4877689+00:00",
"modified_dateutc": "2026-01-11T21:01:32.4877689+00:00"
}
application/xml, text/xml
Sample:
<db_notes xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <date_add>2026-01-11T21:01:32.487Z</date_add> <date_update>2026-01-11T21:01:32.487Z</date_update> <dateutc_add>2026-01-11T21:01:32.487Z</dateutc_add> <dateutc_update>2026-01-11T21:01:32.487Z</dateutc_update> <db_table_id>d4e1233e-9dd7-47ab-a66e-f2cf63988f85</db_table_id> <id>9e1b7598-7411-47f4-a3b5-4c83bba4f7c6</id> <id_in_table>b401cddc-b263-41fc-8a4e-941089e58157</id_in_table> <modified_dateutc>2026-01-11T21:01:32.487Z</modified_dateutc> <notes>sample string 7</notes> <source_db_table_id>6d7c96ad-48c6-4e0f-8f63-fa55085c0333</source_db_table_id> <source_id_in_table>4a7c931f-1fe4-48fd-9e80-cda23552b753</source_id_in_table> <updated_by_user_id>621b6db6-5df0-464a-9d87-1b848a8220ff</updated_by_user_id> <user_id>a7ba6a99-5ad6-4341-b635-a9fb7a44d792</user_id> </db_notes>