
                                                            Picklist  |                                                    Multi-select Picklist  | 
  Users can select only one value from the list.   |    Users can select multiple values at once.   | 
  A standard Region picklist works when a record belongs to only one region.   Example : East  |    A Multi-select Region picklist works when a record spans multiple regions.    Example : East, North  | 
{     "fields": [         {             "field_label": "Select Region",             "data_type": "picklist", // Specify the data type as picklist             "tooltip": {                 "name": "info_icon",                 "value": "Select your region here"             },     "profiles": [                 {                     "id": "5725767000000026011",                     "permission_type": "read_write"                  }  ],             "pick_list_values": [                 {                     "display_value": "East",  //The unique display value for the picklist, which will be displayed in the CRM UI. Use the display_value in API requests during create, update, and upsert operations.                     "actual_value": "IN_East" //The unique reference value associated with the particular option.                 },                 {                     "display_value": "West",                     "actual_value": "IN_West"                 },                 {                     "display_value": "North",                     "actual_value": "IN_North"                 },                 {                     "display_value": "South",                     "actual_value": "IN_South"                 }             ],             "pick_list_values_sorted_lexically": true,   //Sorts options alphabetically. Default value is false.             "enable_colour_code": true    //Allows color coding for picklist options. Default value is false.         }     ] }  | 
{     "fields": [         {             "code": "SUCCESS",             "details": {                 "id": "5725767000007613005"             },             "message": "field created",             "status": "success"         }     ] }  | 
{     "fields": [         {             "pick_list_values": [                 {                     "display_value": "Central", //adding a new option to the existing picklist field                     "actual_value": "IN_Central"                 }             ],         }     ] }  | 
{     "fields": [         {             "profiles": [                 {                     "id": "5725767000000026011",                     "permission_type": "read_only" //updating the permission_type                 }             ],             "pick_list_values": [                 {                     "display_value": "South Region", //updating the display field's value                     "id": "5725767000007613010" //unique ID of the option                  }             ],             "enable_colour_code": false //disabling color code for the options         }     ] }  | 
{     "layouts": [         {             "id": "5725767000000091055", //layout id             "sections": [                 {                     "id": "5725767000000209001", //section id                     "fields": [                         {                             "id": "5725767000007613005", //field id                             "pick_list_values": [                                 {                                     "display_value": "Central",                                     "id": "5725767000007626001"                                 },                                 {                                     "display_value": "East",                                     "id": "5725767000007613004"                                 }                             ]                         }                     ]                 }             ]         }     ] }  | 
{     "fields": [         .         .         .         {             "field_label": "Select Region",             "id": "5725767000007613005",             "api_name": "Select_Region",             "pick_list_values": [                 {                     "display_value": "-None-",                     "sequence_number": 1,                     "reference_value": "-None-",                     "colour_code": null,                     "actual_value": "-None-",                     "id": "5725767000007613013",                     "type": "used"   //default option                 },                 {                     "display_value": "Central",                     "sequence_number": 6,                     "reference_value": "Central",                     "colour_code": null,                     "actual_value": "IN_Central",                     "id": "5725767000007626001",                     "type": "used"                 },                 {                     "display_value": "East",                     "sequence_number": 2,                     "reference_value": "East",                     "colour_code": null,                     "actual_value": "IN_East",                     "id": "5725767000007613004",                     "type": "used"                 },                 {                     "display_value": "North",                     "sequence_number": 4,                     "reference_value": "North",                     "colour_code": null,                     "actual_value": "IN_North",                     "id": "5725767000007613008",                     "type": "unused"                 },                 {                     "display_value": "South",                     "sequence_number": 5,                     "reference_value": "South",                     "colour_code": null,                     "actual_value": "IN_South",                     "id": "5725767000007613010",                     "type": "unused"                 },                 {                     "display_value": "West",                     "sequence_number": 3,                     "reference_value": "West",                     "colour_code": null,                     "actual_value": "IN_West",                     "id": "5725767000007613006",                     "type": "unused"                 }             ],             "data_type": "picklist"         }     ] }  | 
{     "data": [         {             "Company": "Zylker",             "Last_Name": "David",             "Select_Region": "Central"   // Picklist value to assign         }     ] }  | 
{     "data": [         {             "code": "SUCCESS",             "details": {                 "Modified_Time": "2025-08-23T04:51:39-07:00",                 "Modified_By": {                     "name": "Patricia Boyle",                     "id": "5725767000000411001"                 },                 "Created_Time": "2025-08-23T04:51:39-07:00",                 "id": "5725767000007623017",                 "Created_By": {                     "name": "Patricia Boyle",                     "id": "5725767000000411001"                 }             },             "message": "record added",             "status": "success"         }     ] } | 
{     "data": [         {             "Select_Region": "West" // New picklist value         }     ] }  | 
{     "fields": [         {             "field_label": "Status",             "data_type": "picklist",             "pick_list_values": [                 {                     "display_value": "New",                     "actual_value": "New"                 },                 {                     "display_value": "Contacted",                     "actual_value": "Contacted"                 },                 {                     "display_value": "Qualified",                     "actual_value": "Qualified"                 },                 {                     "display_value": "Converted",                     "actual_value": "Converted"                 }             ],              "history_tracking_enabled": true, //(mandatory) Enables history tracking for the picklist             "history_tracking": {                 "related_list_name": "Status History", //Lets you give a custom name to the history related list that CRM creates.                 "duration_configuration": "time", //Decides how to track the timing of changes: days - History is tracked by days and time - History is tracked by time.                Note : Before specifying the time value, enable the duration customization feature in your organization by contacting support@zohocrm.com.                 "followed_fields": [  // The followed_fields lets you retrieve additional field values whenever the picklist value changes.                     {                         "api_name": "Owner"                     }                 ]             }         }     ] }  | 

{     "data": [         {             "Status": "Contacted",             "$approval": {                 "delegate": false,                 "takeover": false,                 "approve": false,                 "reject": false,                 "resubmit": false             },             "Modified_Time": "2025-08-28T06:35:15-07:00",             "$currency_symbol": "$",             "$field_states": null,             "$review_process": null,             "$editable": true,             "Duration_Time": "6568847", //The system stores the duration in milliseconds.             "$sharing_permission": "full_access",             "Lead_Owner": {                 "name": "Patricia Boyle",                 "id": "5725767000000411001"             },             "Moved_To__s": "Qualified",             "$orchestration": false,             "Last_Activity_Time": "2025-08-28T08:24:44-07:00",             "Full_Name": {                 "name": "Zylker",                 "id": "5725767000007735001"             },             "Modified_By": {                 "name": "Patricia Boyle",                 "id": "5725767000000411001",             },             "$review": null,             "$process_flow": false,             "$in_merge": false,             "id": "5725767000007739350",             "$approval_state": "approved",             "$pathfinder": false,             "$zia_visions": null         }     ] }  | 

Writer is a powerful online word processor, designed for collaborative work.