Zoho Recruit
related.update
Updates multiple related records' specific properties in a specified related list.
Remote zoho/recruit
Remote (network-hosted)
Other tools also called related.update?
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": "Individual record update with ID and fields to modify",
"additionalProperties": true
},
"maxItems": 100,
"minItems": 1,
"description": "Array of records to update with their IDs and field values"
},
"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)"
}
}
}