Skip to main content

FieldValueDTO

CRM field value object, as returned when reading a lead/contact (in fields). When writing a field value in a create/update body, use FieldValueRequestDTO instead.

idint64

Field ID this value belongs to

Example: 1
valuestring

Simple value (as text)

Example: VIP
valueListstring[]

Multiple values (for multi-select fields).

Example: ["VIP","New"]
valueTypeValueType

Field value type enum.

Possible values: [STREET, DISTRICT, DEFAULT]

Default value: DEFAULT
Example: DEFAULT
typestring

Field type (lowercased, e.g. text, select)

Example: select
infoTypeInfoType

Which entity a field/value belongs to.

  • LED — the lead
  • CONTACT — the contact

Possible values: [LED, CONTACT]

Example: LED
longitudedouble

Geo coordinate: longitude (for location fields)

Example: 69.2401
latitudedouble

Geo coordinate: latitude (for location fields)

Example: 41.2995
numbernumber

Value for NUMBER fields. Populated instead of value.

Example: 1500.5
currencyIdint64

Currency ID, present when the NUMBER field's format is CURRENCY.

Example: 24
FieldValueDTO
{
"id": 1,
"value": "VIP",
"valueList": [
"VIP",
"New"
],
"valueType": "DEFAULT",
"type": "select",
"infoType": "LED",
"longitude": 69.2401,
"latitude": 41.2995,
"number": 1500.5,
"currencyId": 24
}