Retrieves the db note with the specified key

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult

db_notes
NameDescriptionTypeAdditional 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

db_table_name

Foreign key to the table this db_notes is linked to (Possibles values are company,jobs,project,task) using table name

string

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

user_code

Embedded entity "user" using ERP PK when adding/updating a db_notes

string

Optionally required : user_id, user_code or user must be provided

user

Embedded entity "user" using node when adding/updating a db_notes

user

Optionally required : user_id, user_code or user must be provided

date_add

Date Added. is on the local user time.

date
dateutc_add

Date Added. Auto-filled by NOW if empty

date
notes

Notes

string

Required

reference_back_office

string

Max length: 255

modified_dateutc

Readonly system field managed by database, filled with GetUtcDate when adding,updating

date

Response Formats

application/json, text/json

Sample:
{
  "id": "3e924de9-937d-4d70-afef-e56f18e3d4a5",
  "db_table_id": "3a452bf8-fd0a-4f84-8a2d-d49108259a68",
  "db_table_name": "sample string 3",
  "id_in_table": "def5007c-fd8a-4378-8f67-9fc7ce4cbf3f",
  "user_id": "7539e311-3c0e-4cf1-92dc-0ec7cbd48fda",
  "user_code": "sample string 6",
  "date_add": "2025-09-04T14:30:15.175745+00:00",
  "dateutc_add": "2025-09-04T14:30:15.175745+00:00",
  "notes": "sample string 9",
  "reference_back_office": "sample string 10",
  "modified_dateutc": "2025-09-04T14:30:15.175745+00:00"
}