Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters :
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 |
Request Formats :
application/json, text/json
Sample:
{
"id": "7cf4b943-0432-4f51-b348-97f8e642baa1",
"db_table_id": "97a55022-143a-41ec-9f44-151d39e71b96",
"id_in_table": "4bacd3f0-aaf1-48fd-a384-1bde2c229243",
"user_id": "0febd87b-ca33-442f-b02b-a729d8da5d43",
"date_add": "2026-01-11T21:02:05.4795978+00:00",
"dateutc_add": "2026-01-11T21:02:05.4795978+00:00",
"notes": "sample string 7",
"source_db_table_id": "9cbc8e2c-ca6c-4658-9b54-366fea0377fc",
"source_id_in_table": "ca38e68c-df41-4b4a-ac6a-14bceb30a2bb",
"updated_by_user_id": "de4c92e3-dfd6-47ba-945c-abb364704e1d",
"date_update": "2026-01-11T21:02:05.4795978+00:00",
"dateutc_update": "2026-01-11T21:02:05.4795978+00:00",
"modified_dateutc": "2026-01-11T21:02:05.4795978+00:00"
}
application/xml, text/xml
Sample:
<db_notes xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <date_add>2026-01-11T21:02:05.479Z</date_add> <date_update>2026-01-11T21:02:05.479Z</date_update> <dateutc_add>2026-01-11T21:02:05.479Z</dateutc_add> <dateutc_update>2026-01-11T21:02:05.479Z</dateutc_update> <db_table_id>97a55022-143a-41ec-9f44-151d39e71b96</db_table_id> <id>7cf4b943-0432-4f51-b348-97f8e642baa1</id> <id_in_table>4bacd3f0-aaf1-48fd-a384-1bde2c229243</id_in_table> <modified_dateutc>2026-01-11T21:02:05.479Z</modified_dateutc> <notes>sample string 7</notes> <source_db_table_id>9cbc8e2c-ca6c-4658-9b54-366fea0377fc</source_db_table_id> <source_id_in_table>ca38e68c-df41-4b4a-ac6a-14bceb30a2bb</source_id_in_table> <updated_by_user_id>de4c92e3-dfd6-47ba-945c-abb364704e1d</updated_by_user_id> <user_id>0febd87b-ca33-442f-b02b-a729d8da5d43</user_id> </db_notes>
Response Information
Resource Description :
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.