Zoho Recruit

related.delink

Removes relationships between a parent record and multiple records in a specified related list, identified by their IDs in the query parameter. This operation deletes only the relationship links, not the actual records themselves. The target records remain intact in their respective modules.

Remote zoho/recruit

Remote (network-hosted)

Other tools also called related.delink? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "ids": {
      "type": "string",
      "maxLength": 1024,
      "description": "To retrieve specific records based on their unique ID."
    },
    "relatedList": {
      "type": "string",
      "pattern": "^[A-Za-z_][A-Za-z0-9_]*$",
      "maxLength": 100,
      "description": "The name of the related list (module) containing the records to retrieve or modify"
    },
    "parentRecord": {
      "type": "string",
      "pattern": "^[0-9]+$",
      "maxLength": 20,
      "description": "The unique identifier of the parent record. Must be a valid numeric record ID."
    },
    "parentRecordModule": {
      "type": "string",
      "pattern": "^[A-Za-z_][A-Za-z0-9_]*$",
      "maxLength": 100,
      "description": "The module name of the parent record (e.g., Contacts, Leads, Deals, Accounts, Services__s, Price_Books)"
    }
  }
}