Zoho Recruit
related.get
Retrieves details of a specific record that is related to a parent record. Returns the record data along with pagination information if applicable.
Remote zoho/recruit
Remote (network-hosted)
Other tools also called related.get?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"fields": {
"type": "string",
"maxLength": 1024,
"description": "Specify the API names of the fields you want to retrieve when fetching the records."
},
"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)"
}
}
}