It is not possible to set a max number of records returned from query by using a URLIssue <!-- div.margin { padding: 10px 40px 40px 30px; } table.tocTable { border: 1px solid; border-color: #e0e0e0; background-color: #fff; } .title { color: #d1232b; font-weight: normal; font-size: 28px; } h1 { color: #d1232b; font-weight: normal; font-size: 21px; margin-bottom: 5px; border-bottom-width: 2px; border-bottom-style: solid; border-bottom-color: #cccccc; } h2 { color: #646464; font-weight: bold; font-size: 18px; } h3 { color: #000000; font-weight: bold; font-size: 16px; } h4 { color: #666666; font-weight: bold; font-size: 15px; } h5 { color: #000000; font-weight: bold; font-size: 13px; } h6 { color: #000000; font-weight: bold; font-size:14px; } ul, ol { margin-left: 0; list-style-position: outside; } --> It is not possible to set a limit through a URL for the maximum number of records returned from a query. Example Navigate to "task_add_affected_cis.list" Notice the "Add all (###)" button at the top right corner (where "###" is the number of records returned by the query). This is what is being tried to be controlled by modifying the URL. (If the UI Action displays "Add all (158792)", a way to change that to limit the records to only 10,000 causing the UI action to display "Add all (10,000)", was what was being looked for. ResolutionThe "sysparm_limit" parameter was tested unsuccessfully to achieve this, because sysparm_limit only exists for the Table API for REST services. Rest API GlideList does not have any code designed to handle that parameter. It is not possible to do this through out-of-the-box configurations. An alternative would be to create a Business Rule to filter out the query results, or modify the query to restrict the results, but it is not possible to limit the number of results to display fewer records than the actual results of the query.