Zoho Recruit

ZOHO_CONVERT_ZOHO_LEAD

Converts a lead into a contact, account, and optionally a deal in Zoho CRM.

Remote zoho

Remote (network-hosted)

Other tools also called ZOHO_CONVERT_ZOHO_LEAD? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "lead_id": {
      "type": "string",
      "title": "Lead Id",
      "description": "The unique ID of the lead to convert."
    },
    "assign_to": {
      "type": "string",
      "title": "Assign To",
      "default": "",
      "description": "User ID to assign as the owner of the new contact/account."
    },
    "overwrite": {
      "type": "boolean",
      "title": "Overwrite",
      "default": false,
      "description": "Whether to overwrite the account name in the contact if it already exists and the company names mismatch."
    },
    "account_id": {
      "type": "string",
      "title": "Account Id",
      "default": "",
      "description": "ID of an existing account to associate with the converted lead."
    },
    "contact_id": {
      "type": "string",
      "title": "Contact Id",
      "default": "",
      "description": "ID of an existing contact to associate with the converted lead."
    },
    "notify_lead_owner": {
      "type": "boolean",
      "title": "Notify Lead Owner",
      "default": false,
      "description": "Notify the lead owner about the conversion via email."
    },
    "notify_new_entity_owner": {
      "type": "boolean",
      "title": "Notify New Entity Owner",
      "default": false,
      "description": "Notify the new owner of the contact/account via email."
    }
  }
}