Updates the item with the specified key

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters :

db_info_field
NameDescriptionTypeAdditional information
id

Primary key

globally unique identifier
db_info_id

Foreign key to db_info (chapters)

globally unique identifier

Optionally required : db_info_id,db_info_code or node db_info must be provided

db_info_code

Embedded entity "db_info" using ERP PK when adding/updating db_info_field

string

Optionally required : db_info_id ,db_info_code or node db_info must be provided

db_info

Embedded entity "db_info" (chapter) when adding/updating db_info_field

db_info

Optionally required : db_info_id,db_info_code or node db_info must be provided

db_input_type_id

Type of the fied (like Textbox,TextArea)

globally unique identifier

Optionally required : db_input_type_id or db_input_type_code must be provided

db_input_type_code

Use of the possible type : TextBox,TextArea,SelectBox,RadioButton,DateTime,NumericField,Checkbox,ComboBox,Email,Url,DatePicker,MonthCalendar,TimePiker,Number

string

Optionally required : db_input_type_id or db_input_type_code must be provided

name

Name/Code of the info field.Field used for Embedded entity (store there your ERP PK)

string

Required

Max length: 50

title

Title that will be shown on the UI of the info field

string

Required

Max length: 50

sequence

Sorting field (0 first), to order them inside the chapter

integer
description

Description of the field

string

Max length: 255

is_mandatory

Force user to fill it before saving

boolean
is_readonly

Avoid user to edit the value using the UI

boolean
hide_in_view_if_empty

Hide this field in view mode if no value

boolean
udf_name

Name of udf column that links to info field (read-only)

string
visible_on_app

Visible this field on app

boolean

Request Formats :

application/json, text/json

Sample:
{
  "id": "a13b683d-ae18-49f6-834e-2497412792c3",
  "db_info_id": "3da75061-4f40-4e3b-a30f-5c3b80ea6212",
  "db_info_code": "sample string 3",
  "db_info": {
    "id": "fd70082d-db35-4288-bd3a-80c26c0236a9",
    "name": "sample string 2",
    "code": "sample string 3",
    "sequence": 4,
    "db_info_category_id": "b6f0faeb-18e1-4141-bc2a-38a209c5673b",
    "db_info_category_code": "sample string 6",
    "parent_id": "99bbafbe-d2fe-421d-ac12-6fe130412e44",
    "parent_db_info_code": "sample string 8",
    "modified_dateutc": "2024-09-29T01:37:50.1841426+00:00"
  },
  "db_input_type_id": "8aed0092-6124-4430-ad86-45b6a327cf8e",
  "db_input_type_code": "sample string 5",
  "name": "sample string 6",
  "title": "sample string 7",
  "sequence": 8,
  "description": "sample string 9",
  "is_mandatory": true,
  "is_readonly": true,
  "hide_in_view_if_empty": true,
  "udf_name": "sample string 13",
  "visible_on_app": true
}

Response Information

Resource Description :

IHttpActionResult

None.

Response Formats

application/json, text/json

Sample:

Sample not available.