Zoho Recruit
related.listDeleted
Retrieves a list of records that were previously related to a parent record but have since been deleted. Useful for audit trails and data recovery scenarios.
Remote zoho/recruit
Remote (network-hosted)
Other tools also called related.listDeleted?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"page": {
"type": "integer",
"format": "int32",
"description": "To get the list of records from the respective pages"
},
"fields": {
"type": "string",
"maxLength": 1024,
"description": "Specify the API names of the fields you want to retrieve when fetching the records."
},
"per_page": {
"type": "integer",
"format": "int32",
"description": "Specify how many records to return per page"
},
"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)"
}
}
}