Rest API records update limit extend
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Monday
While calling the rest api, it updates 200 records for a particular BAN in the other system which is C360. This is based on TSM module. So, I used the pagination concept but it feels like complex. So, how to extend the limit, when the rest api called to the third party system it should update all the address for all the addressess on that one BAN related. Can anybody help me on this?. #Servicenow #TSM #Rest API #Integration
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Monday
Option1:
Add &sysparm_limit=10000 to your API endpoint URL to increase the default limit of 200 or 10,000
Note: Try to set the limit, between 2k to 5k. We have faced timeout issue for one of our integration due to huge payload size.
Option 2: Using flow designer first filter the record list using Lookup record action, then send the payload. Scheduled the flow Run.
Option 3 : KB0727636 How to export bulk data from ServiceNow using REST API pagination
