API Docs / Schemas / CustomFieldValueDto

CustomFieldValueDto

A custom field value for a client. Use the custom field definitions endpoint
to retrieve data types, labels, and allowed options for each field code.

Properties

Name Type Description
fieldCodestring

The code of the CustomFieldDefinition this value belongs to

The code of the CustomFieldDefinition this value belongs to

valuestring

The value of the custom field, stored as a string regardless of data type.
For Boolean fields use "true"/"false", for Date fields use ISO 8601 format,
for MultiSelect fields use a comma-separated list of selected options.

The value of the custom field, stored as a string regardless of data type.
For Boolean fields use "true"/"false", for Date fields use ISO 8601 format,
for MultiSelect fields use a comma-separated list of selected options.

JSON Example

{
  "fieldCode": "string",
  "value": "string"
}