Zoho Recruit

related.delinkOne

Deletes the association between a parent record and a specific related record. This operation deletes only the relationship link, not the actual record itself.

Remote zoho/recruit

Remote (network-hosted)

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

Input Schema


            {
  "type": "object",
  "properties": {
    "recordID": {
      "type": "string",
      "format": "int64",
      "description": "This ID is used to uniquely identify a record"
    },
    "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)"
    }
  }
}