Creates or updates multiple db_report info field values in one call.

Request Information

URI Parameters :

None.

Body Parameters :

db_info_data
NameDescriptionTypeAdditional information
id

Primary key

globally unique identifier
target_id

Foreign key of the object using his Odyssee Guid Primary Key

globally unique identifier

Optionally required : target_id or target_code must be provided

db_info_field_id

Foreign key of the custom info field this value was entered for.

globally unique identifier

Optionally required : db_info_field_id, db_info_field_name or db_info_field must be provided

value

The value of this info fields for this targetId. Follow the formating rules (API / HELP / Info Fields)

string
sys_logical_delete

Logical delete

boolean
modified_dateutc

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

date

Request Formats :

application/json, text/json

Sample:
{
  "id": "d76a64ea-5100-488b-a003-c05bff443e5b",
  "target_id": "6fccb9eb-96e1-479b-903c-259ae7a2ee3a",
  "db_info_field_id": "dccd1820-b911-4ef0-a2bd-764edb2db874",
  "value": "sample string 4",
  "sys_logical_delete": true,
  "modified_dateutc": "2026-09-16T08:35:04.2120506+00:00"
}

application/xml, text/xml

Sample:
<db_info_data xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <db_info_field_id>dccd1820-b911-4ef0-a2bd-764edb2db874</db_info_field_id>
  <id>d76a64ea-5100-488b-a003-c05bff443e5b</id>
  <modified_dateutc>2026-09-16T08:35:04.212Z</modified_dateutc>
  <sys_logical_delete>true</sys_logical_delete>
  <target_id>6fccb9eb-96e1-479b-903c-259ae7a2ee3a</target_id>
  <value>sample string 4</value>
</db_info_data>

Response Information

Resource Description :

For app version >= 3.1.7: IHttpActionResult with the ResponseResult of the batch save. For older app versions: the comma-separated ids of successfully saved records, as a plain string. 200 OK with no body if the array was empty.

db_info_data
NameDescriptionTypeAdditional information
id

Primary key

globally unique identifier
target_id

Foreign key of the object using his Odyssee Guid Primary Key

globally unique identifier

Optionally required : target_id or target_code must be provided

db_info_field_id

Foreign key of the custom info field this value was entered for.

globally unique identifier

Optionally required : db_info_field_id, db_info_field_name or db_info_field must be provided

value

The value of this info fields for this targetId. Follow the formating rules (API / HELP / Info Fields)

string
sys_logical_delete

Logical delete

boolean
modified_dateutc

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

date

Response Formats

application/json, text/json

Sample:
{
  "id": "fa65f4d7-24e9-4636-b163-2ac3dddb418c",
  "target_id": "ed2580e4-3b00-4e99-9e2e-78a7d4ed7add",
  "db_info_field_id": "2ed248d1-4ada-4a33-af08-648ce7ba99fc",
  "value": "sample string 4",
  "sys_logical_delete": true,
  "modified_dateutc": "2026-09-16T08:35:04.2120506+00:00"
}

application/xml, text/xml

Sample:
<db_info_data xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <db_info_field_id>2ed248d1-4ada-4a33-af08-648ce7ba99fc</db_info_field_id>
  <id>fa65f4d7-24e9-4636-b163-2ac3dddb418c</id>
  <modified_dateutc>2026-09-16T08:35:04.212Z</modified_dateutc>
  <sys_logical_delete>true</sys_logical_delete>
  <target_id>ed2580e4-3b00-4e99-9e2e-78a7d4ed7add</target_id>
  <value>sample string 4</value>
</db_info_data>