SmartTask Developers
Main Website
  • Overview
  • Authentication
    • Basics
    • Details
  • Endpoints
    • Organization
      • Fetch Organizations
    • Task
      • Create a Task
    • Record Activity
      • Fetch Activities
      • Add Comment
    • Project
      • Fetch Projects
    • Organization User
      • Filter Users
    • Webhooks
      • Subscribe to an Event
      • Unsubscribe from a Webhook
  • Models
    • Organization
      • Organization User
    • Group
    • Project
    • Record
    • Record Activity
    • Task
    • Contact
    • Webhook
    • Membership
    • File
    • Custom Field
      • Custom Field Value
    • User
Powered by GitBook
On this page
  1. Models
  2. Custom Field

Custom Field Value

{
    cfv_id?: number;
    custom_field_info: CustomFieldModel;
    
    project_id?: string;
    record_id?: string;
    custom_field_id: string;

    text_value?: string; // max 500
    number_value?: number;
    option_value?: CustomFieldOptionModel;
    multi_select_option_values = new Array<CustomFieldOptionModel>();
    datetime_value?: Date;
}
  • Please refer to Custom Field for CustomFieldModel, CustomFieldOptionModel

PreviousCustom FieldNextUser

Last updated 8 days ago