FieldValueChangeRaw: {
    action_type: ActionType;
    changed_at: DateTime;
    changer: Changer;
    entity_id: number;
    field_id: number;
    id: number;
    list_entry_id: number;
    value: ValueRaw;
}

Represents the response object for a field value change.

Note: There are some extra attributes returned by this endpoint; they will be deprecated soon and should not be used.

Type declaration

  • action_type: ActionType

    Describes the action behind this field value change.

  • changed_at: DateTime

    The timestamp when the field value change occurred.

  • changer: Changer

    The changer object.

  • entity_id: number

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

  • field_id: number

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

  • id: number

    The unique identifier of the field value change object.

  • list_entry_id: number

    The unique identifier of the list entry object the field value change is associated with.

  • value: ValueRaw

    Represents the field's value.

    This attribute can take on many different types, depending on the field value_type. When the action type is ActionType.DELETE, value represents the old value; otherwise, it represents the new value.