Follow Ups

The follow_ups table contains data about entities needing followup created in the organization.

This table can be used to determine which entities need followups by whom, as well as metadata about the followup such as when it was created.

Columns

Column Name Description Type Nullable
id The numerical identifier of the object. INT8 No
created_by_id The numerical identifier of the user who created this followup. Relates to the id column in the users table. INT8 Yes
entity_id The numerical identifier of the entity who needs following up. Relates to the id column in the entities table. INT8 Yes
campaign_id The numerical identifier of the campaign this followup was created in. Relates to the id column in the campaigns table. INT8 Yes
created_at The UTC timestamp when this object was created. TIMESTAMP No
updated_at The UTC timestamp when this object was updated. TIMESTAMP No
completed_by_id The numerical identifier of the user who completed this followup. Relates to the id column in the users table. INT4 Yes
completed_at The UTC timestamp when this followup was completed. TIMESTAMP Yes
assigned_user_id The numerical identifier of the user who has been assigned to complete this followup. Relates to the id column in the users table. INT4 Yes