FieldValueRaw: FieldBase & {
    created_at: DateTime;
    entity_id: number;
    field_id: number;
    id: number;
    list_entry_id: number | null;
    updated_at: DateTime | null;
} & ValueTypeMixin<FieldValueRawValues>

Each field value object has a unique id.

A field value also has field_id, entity_id, and list_entry_id attributes that give it the appropriate associations.

Use the created_at and updated_at timestamps on field values to determine when the value(s) for a given field have last been added or changed. Please note that what might amount to an “update” in-product (e.g. for dropdown fields) might result in a newly created field value rather than an updated old one in the API.

A field value can take on many different kinds of values, depending on the field value type.

Note: When retrieving Field Values from a specific cell in your Affinity list, it may be helpful to think about it as an XY coordinate system. The X coordinate is the List Entry or Entity and the Y coordinate is the Field ID. You will need to have both to find the appropriate Field Value ID.

Type declaration

  • created_at: DateTime

    The string representing the time when the field value was created.

  • entity_id: number

    The unique identifier of the person, organization, or opportunity object the field value is associated with.

  • field_id: number

    The unique identifier of the field the value is associated with.

  • id: number

    The unique identifier of the field value object.

  • list_entry_id: number | null

    The unique identifier of the list entry object the field value is associated with. This only exists if the field the value is associated with is list-specific, null marks a global field value.

  • updated_at: DateTime | null

    The string representing the last time the field value was updated.