Zoho Recruit

records.listDeleted

Retrieve the deleted records for the module. This endpoint can retrieve both permanently deleted records and temporarily deleted records from the recycle bin.

Remote zoho/recruit

Remote (network-hosted)

Other tools also called records.listDeleted? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "page": {
      "type": "integer",
      "format": "int32",
      "default": 1,
      "minimum": 1,
      "description": "To get the list of records from the respective pages. Default value for page is 1."
    },
    "type": {
      "enum": [
        "all",
        "recycle",
        "permanent"
      ],
      "type": "string",
      "default": "all",
      "maxLength": 20,
      "description": "Specifies the type of deleted records to retrieve. Use 'all' to get all deleted records, 'recycle' for records in recycle bin, or 'permanent' for permanently deleted records."
    },
    "module": {
      "type": "string",
      "maxLength": 100,
      "description": "Specifies the module name"
    },
    "per_page": {
      "type": "integer",
      "format": "int32",
      "default": 200,
      "maximum": 200,
      "minimum": 1,
      "description": "To get the list of records available per page. The default and the maximum possible value is 200."
    }
  }
}