Zoho Recruit

related.updateOne

Updates a specific related record's properties.

Remote zoho/recruit

Remote (network-hosted)

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

Input Schema


            {
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "id"
        ],
        "properties": {
          "id": {
            "type": "string",
            "pattern": "^[0-9]+$",
            "maxLength": 20,
            "description": "Unique identifier of the record to update"
          }
        },
        "description": "Record update with ID and fields to modify",
        "additionalProperties": true
      },
      "maxItems": 1,
      "minItems": 1,
      "description": "Array containing the record to update"
    },
    "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)"
    }
  }
}