Skip to content
Advertisement

Exporting data as CSV file from ServiceNow instance using Python

I have some data in an instance that I would like to export to a CSV file using Python and the REST API. I wish to use REST, because there are some rows missing when emailed as a .CSV file. The query gives me 12,000 rows, however, the file that is emailed to me only contains 10,001 rows.

Here is the data I wish to export to CSV:

enter image description here

I have added a filter, and it is only about 12,000 rows that I wish to export. This is what I am doing in Python:

JavaScript

However, the output appears to be html and CSS:

enter image description here

I am still troubleshooting this, and would like to know if my above code is correct, or what needs to be tweaked to have the data exported in a .csv data-frame format and to a csv file. Any suggestions are appreciated. Thank you

Advertisement

Answer

ServiceNow will limit exports to 10,000 records by default for performance reasons.

Try adding &sysparm_limit=20000 to your URL.

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement