Bulk Export Records from a URLSummaryWhen exporting large amounts of data from a URL (e.g https://INSTANCENAME.service-now.com/incident_list.do?XLSX) the documentation (Break up a large export) suggests to order by sys_id and then paginate by manually getting the next sys_id to get each 'page'. This may not work if exporting to Excel (or other formats) as the sys_id may not be in there. Instead you can export by number. ReleaseAll current ServiceNow releasesInstructionsFor example a customer wanted to export millions of VIT records to Excel, but they'd likely need to do this using fairly small page sizes such as 1000. To do this they need to order by Number so that they can do it programmatically: Export the first page: https://INSTANCENAME.service-now.com/sn_vul_vulnerable_item_list.do?XLSX&sysparm_orderby=number&sysparm_query=number%3EVIT000010248&sysparm_record_count=1000Have whatever script/program they're using check the data in the exported spreadsheet to pick out the next Number value to make the next request, e.g VIT000011248Export the second page: https://INSTANCENAME.service-now.com/sn_vul_vulnerable_item_list.do?XLSX&sysparm_orderby=number&sysparm_query=number%3EVIT000011248&sysparm_record_count=1000And so on..