Zoho Recruit

ZOHO_GET_ZOHO_RECORDS

Retrieves records from a specified module in Zoho CRM. Notes: - Discrete (page/per_page) pagination is limited to the first 2,000 records. To retrieve records beyond this, use token-based pagination via page_token from the previous response's info.next_page_token. - Do not use page together with page_token. - You cannot use cvid together with sort_by.

Remote zoho

Remote (network-hosted)

Other tools also called ZOHO_GET_ZOHO_RECORDS? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "ids": {
      "type": "string",
      "title": "Ids",
      "default": "",
      "description": "Comma-separated record IDs to fetch specific records."
    },
    "cvid": {
      "type": "integer",
      "title": "Cvid",
      "description": "Custom view ID to filter the records. Cannot be used together with sort_by."
    },
    "page": {
      "type": "integer",
      "title": "Page",
      "default": 1,
      "minimum": 1,
      "description": "Page number to retrieve. Without page_token, only the first 2,000 records are accessible using page/per_page. Maximum page number is floor(2000/per_page). Do not use together with page_token."
    },
    "fields": {
      "type": "string",
      "title": "Fields",
      "default": "First_Name,Last_Name,Email,Phone,Company",
      "description": "Comma-separated API names of the fields to retrieve (max 50). Field names are module-specific. For Contacts module, use valid API names like First_Name, Last_Name, Email, Phone, Mobile, Account_Name, etc. Invalid examples: 'Company', 'Contact_Owner'."
    },
    "sort_by": {
      "type": "string",
      "title": "Sort By",
      "default": "Modified_Time",
      "description": "Field to sort records by (id, Created_Time, or Modified_Time). Cannot be used with cvid."
    },
    "per_page": {
      "type": "integer",
      "title": "Per Page",
      "default": 200,
      "description": "Number of records per page (default and max is 200). Applies to both page and page_token pagination."
    },
    "page_token": {
      "type": "string",
      "title": "Page Token",
      "default": null,
      "nullable": true,
      "description": "Token-based pagination parameter to fetch records beyond the 2,000-record discrete limit. Use the info.next_page_token from the previous response. Cannot be used together with page."
    },
    "sort_order": {
      "type": "string",
      "title": "Sort Order",
      "default": "desc",
      "description": "Sort order: 'asc' or 'desc' (default is 'desc')."
    },
    "module_api_name": {
      "type": "string",
      "title": "Module Api Name",
      "description": "The API name of the module to retrieve records from."
    }
  }
}