Zoho Recruit

ZOHO_CREATE_ZOHO_RECORD

Creates new records in a specified module in Zoho CRM.

Remote zoho

Remote (network-hosted)

Other tools also called ZOHO_CREATE_ZOHO_RECORD? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {},
        "additionalProperties": true
      },
      "title": "Data",
      "examples": [
        [
          {
            "id": "660867000000539002",
            "Email": "[email protected]",
            "Phone": "555-6789"
          }
        ]
      ],
      "description": "A list of dictionaries representing the records to be created."
    },
    "lar_id": {
      "type": "string",
      "title": "Lar Id",
      "default": null,
      "nullable": true,
      "description": "The layout ID or lead assignment rule ID (lar_id) to be used if required."
    },
    "trigger": {
      "type": "array",
      "items": {
        "type": "string",
        "properties": {}
      },
      "title": "Trigger",
      "default": null,
      "nullable": true,
      "description": "List of triggers to invoke during record creation (e.g., ['workflow', 'blueprint'])."
    },
    "module_api_name": {
      "type": "string",
      "title": "Module Api Name",
      "description": "The API name of the module to create a record in."
    }
  }
}