Exporting Sysids to a spreadsheet (CSV web service) really useful post on how to get sysids added as a column to a CSV export (CSV web service) https://developer.servicenow.com/blog.do?p=/post/exporting-data-with-sys-ids/ in a nutshell: - edit the system property SYSPARM_DEFAULT_EXPORT_FIELDS to add in the sys id column, or just add as a parameter to the URL like so: https://instance.service-now.com/incident_list.do?CSV& sysparm_default_export_fields=all - fire the URL at the instance, e.g. 'active tickets where vendor = <a vendor>', examples: https://instance.service-now.com/incident.do?CSV&sysparm_query=priority=1^active=true https://instance.service-now.com/incident.do?CSV& sysparm_default_export_fields=all &sysparm_query=priority=1^active=true https://instance.service-now.com/incident.do?CSV&CSV&sysparm_default_export_fields=all&sysparm_query=active=true^u_vendor=91c6f451371e420041c5616043990eee t his format seems to work ...
All things ServiceNow... take a look at my channel: https://www.youtube.com/@cloudminus89