Zoho Creator · Example Payload

Get Form Fields Response

Low-CodeApplication DevelopmentNo-CodeFormsRecordsWorkflowsDatabaseCRUDBusiness Applications

Get Form Fields Response is an example object payload from Zoho Creator, with 3 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

codemessagedata

Example Payload

Raw ↑
{
  "code": 3000,
  "message": "Fields fetched successfully",
  "data": [
    {
      "link_name": "Name",
      "display_name": "Name",
      "type": "Name",
      "is_mandatory": true,
      "max_length": 255
    },
    {
      "link_name": "Email",
      "display_name": "Email",
      "type": "Email",
      "is_mandatory": false,
      "max_length": 100
    },
    {
      "link_name": "Department",
      "display_name": "Department",
      "type": "Dropdown",
      "is_mandatory": false,
      "choices": ["Engineering", "Marketing", "Sales", "Finance", "HR"]
    },
    {
      "link_name": "Start_Date",
      "display_name": "Start Date",
      "type": "Date",
      "is_mandatory": false
    }
  ]
}