PUT 17.0/database/propertydefinablefields/{propertyid}/{definablefieldid}/{definablefielditemid}

Description

Update existing Property Definable Fields

URI Parameters

Name Description Type Additional information
propertyID

integer

Required

definableFieldID

integer

Required

definableFieldItemID

integer

Required

Name Description Type Additional information
PropertyID

integer

None.

DefinableFieldID

integer

None.

DefinableFieldItemID

integer

None.

Val

string

String length: inclusive between 0 and 255

ValNumber

decimal number

None.

ValDate

date

None.

application/json, text/json

Sample:
{
  "propertyID": 1,
  "definableFieldID": 1,
  "definableFieldItemID": 1,
  "val": "sample string 1",
  "valNumber": 1.0,
  "valDate": "2025-01-09T20:49"
}

application/xml, text/xml

Sample:
<PropertyDefinableFieldsUpdate xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <PropertyID>1</PropertyID>
  <DefinableFieldID>1</DefinableFieldID>
  <DefinableFieldItemID>1</DefinableFieldItemID>
  <Val>sample string 1</Val>
  <ValNumber>1</ValNumber>
  <ValDate>2025-01-09T20:49:28.9145712+00:00</ValDate>
</PropertyDefinableFieldsUpdate>

application/x-www-form-urlencoded

Sample:

Sample not available.

Name Description Type Additional information
PropertyID

integer

None.

DefinableFieldID

integer

None.

DefinableFieldItemID

integer

None.

Val

string

String length: inclusive between 0 and 255

ValNumber

decimal number

None.

ValDate

date

None.

application/json, text/json

Sample:
{
  "propertyID": 1,
  "definableFieldID": 2,
  "definableFieldItemID": 3,
  "val": "sample string 4",
  "valNumber": 5.0,
  "valDate": "2025-01-09T20:49"
}

application/xml, text/xml

Sample:
<PropertyDefinableFields xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <PropertyID>1</PropertyID>
  <DefinableFieldID>2</DefinableFieldID>
  <DefinableFieldItemID>3</DefinableFieldItemID>
  <Val>sample string 4</Val>
  <ValNumber>5</ValNumber>
  <ValDate>2025-01-09T20:49:28.9145712+00:00</ValDate>
</PropertyDefinableFields>