<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>question Re: Want to limit query to 50 records at a time while making a GET query. in Developer forum</title>
    <link>https://www.servicenow.com/community/developer-forum/want-to-limit-query-to-50-records-at-a-time-while-making-a-get/m-p/1913870#M570796</link>
    <description>&lt;P&gt;The idea of having sysparm_limit and link header is exactly to support this scenario. When you make your first call on load of page, you pass sysparm_limit =30 as query parameter.&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;With the response, you will get next, prev link in headers. when ever you scroll down, you make next call to get next 30 records using next and keep going&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;It is recommended to use ORDERBY so you don't get duplicate records because of changes in DataBase plan which might re order results causing duplicates&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;For eg. My initial request for 10 records looks like this&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;A href="https://demonightlyeureka.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on" title="https://demonightlyeureka.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on"&gt;https://instance.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on&lt;/A&gt; &lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Response will have Link header&lt;/P&gt;&lt;BR /&gt;&lt;P class="response-header-name" data-content="Used to express a typed relationship with another resource, where the relation type is defined by RFC 5988" data-original-title="Link" data-placement="right" data-trigger="hover" style="font-weight: bold; color: #333333; margin-right: 0.5rem; font-family: Lato, Helvetica, Arial, sans-serif; font-size: 11.544px;"&gt;Link â†’&lt;/P&gt;&lt;BR /&gt;&lt;P class="response-header-value" style="color: #333333; font-family: Lato, Helvetica, Arial, sans-serif; font-size: 11.544px;"&gt;&amp;lt;&lt;SPAN class="cm-link" style="color: #0088cc; background-position: initial;"&gt;&lt;A title="k-external-small" class="jive-link-external-small" href="https://instance.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on&amp;amp;sysparm_offset=0" rel="nofollow" target="_blank"&gt;https://instance.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on&amp;amp;sysparm_offset=0&lt;/A&gt;&lt;/SPAN&gt;&amp;gt;;rel="first",&lt;/P&gt;&lt;BR /&gt;&lt;P class="response-header-value" style="color: #333333; font-family: Lato, Helvetica, Arial, sans-serif; font-size: 11.544px;"&gt;&amp;lt;&lt;SPAN class="cm-link" style="color: #0088cc; background-position: initial;"&gt;&lt;A title="k-external-small" class="jive-link-external-small" href="https://instance.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on&amp;amp;sysparm_offset=10" rel="nofollow" target="_blank"&gt;https://instance.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on&amp;amp;sysparm_offset=10&lt;/A&gt;&lt;/SPAN&gt;&amp;gt;;rel="next",&lt;/P&gt;&lt;BR /&gt;&lt;P class="response-header-value" style="color: #333333; font-family: Lato, Helvetica, Arial, sans-serif; font-size: 11.544px;"&gt;&amp;lt;&lt;SPAN class="cm-link" style="color: #0088cc; background-position: initial;"&gt;&lt;A title="k-external-small" class="jive-link-external-small" href="https://instance.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on&amp;amp;sysparm_offset=560" rel="nofollow" target="_blank"&gt;https://instance.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on&amp;amp;sysparm_offset=560&lt;/A&gt;&lt;/SPAN&gt;&amp;gt;;rel="last"&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;If you see here there is link for rel=next, which gives you next 10 records. There are libraries out there which can parse this header elegantly to get proper links for next, first,last set of records.&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;In this case, we need to get 'rel=next' link and make subsequent request to get next 10 records&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;A href="https://demonightlyeureka.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on&amp;amp;sysparm_offset=10" title="https://demonightlyeureka.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on&amp;amp;sysparm_offset=10"&gt;https://instance.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on&amp;amp;sysparm_offset=10&lt;/A&gt; &lt;/P&gt;&lt;BR /&gt;&lt;P class="response-header-name" data-content="Used to express a typed relationship with another resource, where the relation type is defined by RFC 5988" data-original-title="Link" data-placement="right" data-trigger="hover" style="font-weight: bold; color: #333333; margin-right: 0.5rem; font-family: Lato, Helvetica, Arial, sans-serif; font-size: 11.544px;"&gt;Response will have another set of headers with again next, prev link to get that set of records&lt;/P&gt;&lt;BR /&gt;&lt;P class="response-header-name" data-content="Used to express a typed relationship with another resource, where the relation type is defined by RFC 5988" data-original-title="Link" data-placement="right" data-trigger="hover" style="font-weight: bold; color: #333333; margin-right: 0.5rem; font-family: Lato, Helvetica, Arial, sans-serif; font-size: 11.544px;"&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P class="response-header-name" data-content="Used to express a typed relationship with another resource, where the relation type is defined by RFC 5988" data-original-title="Link" data-placement="right" data-trigger="hover" style="font-weight: bold; color: #333333; margin-right: 0.5rem; font-family: Lato, Helvetica, Arial, sans-serif; font-size: 11.544px;"&gt;Link â†’&lt;/P&gt;&lt;BR /&gt;&lt;P class="response-header-value" style="color: #333333; font-family: Lato, Helvetica, Arial, sans-serif; font-size: 11.544px;"&gt;&amp;lt;&lt;SPAN class="cm-link" style="color: #0088cc; background-position: initial;"&gt;&lt;A title="k-external-small" class="jive-link-external-small" href="https://instance.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on&amp;amp;sysparm_offset=0" rel="nofollow" target="_blank"&gt;https://instance.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on&amp;amp;sysparm_offset=0&lt;/A&gt;&lt;/SPAN&gt;&amp;gt;;rel="first",&lt;/P&gt;&lt;BR /&gt;&lt;P class="response-header-value" style="color: #333333; font-family: Lato, Helvetica, Arial, sans-serif; font-size: 11.544px;"&gt;&amp;lt;&lt;SPAN class="cm-link" style="color: #0088cc; background-position: initial;"&gt;&lt;A title="k-external-small" class="jive-link-external-small" href="https://instance.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on&amp;amp;sysparm_offset=0" rel="nofollow" target="_blank"&gt;https://instance.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on&amp;amp;sysparm_offset=0&lt;/A&gt;&lt;/SPAN&gt;&amp;gt;;rel="prev",&lt;/P&gt;&lt;BR /&gt;&lt;P class="response-header-value" style="color: #333333; font-family: Lato, Helvetica, Arial, sans-serif; font-size: 11.544px;"&gt;&amp;lt;&lt;SPAN class="cm-link" style="color: #0088cc; background-position: initial;"&gt;&lt;A title="k-external-small" class="jive-link-external-small" href="https://instance.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on&amp;amp;sysparm_offset=20" rel="nofollow" target="_blank"&gt;https://instance.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on&amp;amp;sysparm_offset=20&lt;/A&gt;&lt;/SPAN&gt;&amp;gt;;rel="next",&lt;/P&gt;&lt;BR /&gt;&lt;P class="response-header-value" style="color: #333333; font-family: Lato, Helvetica, Arial, sans-serif; font-size: 11.544px;"&gt;&amp;lt;&lt;SPAN class="cm-link" style="color: #0088cc; background-position: initial;"&gt;&lt;A title="k-external-small" class="jive-link-external-small" href="https://instance.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on&amp;amp;sysparm_offset=560" rel="nofollow" target="_blank"&gt;https://instance.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on&amp;amp;sysparm_offset=560&lt;/A&gt;&lt;/SPAN&gt;&amp;gt;;rel="last"&lt;/P&gt;&lt;BR /&gt;</description>
    <pubDate>Mon, 08 Feb 2016 17:49:51 GMT</pubDate>
    <dc:creator>venkata_koya</dc:creator>
    <dc:date>2016-02-08T17:49:51Z</dc:date>
    <item>
      <title>Want to limit query to 50 records at a time while making a GET query.</title>
      <link>https://www.servicenow.com/community/developer-forum/want-to-limit-query-to-50-records-at-a-time-while-making-a-get/m-p/1913863#M570789</link>
      <description>&lt;P&gt;Hello All,I want to limit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to limit query to 50 records at a time while making a GET call to Service Now. I have checked there is one parameter(&lt;SPAN style="color: #000000; font-family: Arial; font-size: 13px;"&gt;sysparm_limit)&lt;/SPAN&gt; by which I can limit the number of queries at a time but I want that if number of records are 10000 then it should get all the records but in 50 records per query fashion. Any idea how to achieve this.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jan 2016 13:13:10 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/want-to-limit-query-to-50-records-at-a-time-while-making-a-get/m-p/1913863#M570789</guid>
      <dc:creator>Chandresh</dc:creator>
      <dc:date>2016-01-07T13:13:10Z</dc:date>
    </item>
    <item>
      <title>Re: Want to limit query to 50 records at a time while making a GET query.</title>
      <link>https://www.servicenow.com/community/developer-forum/want-to-limit-query-to-50-records-at-a-time-while-making-a-get/m-p/1913864#M570790</link>
      <description>&lt;P&gt;Hi Chandresh,&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;A href="http://wiki.servicenow.com/index.php?title=Table_API#Methods" style="line-height: 1.5;" title="http://wiki.servicenow.com/index.php?title=Table_API#Methods"&gt;http://wiki.servicenow.com/index.php?title=Table_API#Methods&lt;/A&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 07 Jan 2016 13:17:23 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/want-to-limit-query-to-50-records-at-a-time-while-making-a-get/m-p/1913864#M570790</guid>
      <dc:creator>Deepak Ingale1</dc:creator>
      <dc:date>2016-01-07T13:17:23Z</dc:date>
    </item>
    <item>
      <title>Re: Want to limit query to 50 records at a time while making a GET query.</title>
      <link>https://www.servicenow.com/community/developer-forum/want-to-limit-query-to-50-records-at-a-time-while-making-a-get/m-p/1913865#M570791</link>
      <description>&lt;P&gt;Hi Deepak,&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Could you please explain below examples given in the above link, what is the signoificance of rel="next", "prev" etc.&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; *****************************************************************************************&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;STRONG style="color: #333333; font-family: Omnes-pro, Arial, Verdana, sans-serif;"&gt;Link:&lt;/STRONG&gt;&lt;SPAN style="color: #333333; font-family: Omnes-pro, Arial, Verdana, sans-serif;"&gt; REST message data can be split into multiple result sets rather than forcing the user to submit multiple requests. The header has different links available for the first set, previous set, next set, and the last set of records, where applicable.&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P style="margin-top: 0.4em; margin-bottom: 0.5em; color: #333333; font-family: Omnes-pro, Arial, Verdana, sans-serif;"&gt;For example:&lt;BR /&gt;&lt;TT&gt;{instance}/api/now/table/cmdb_ci?sysparm_offset=40&amp;amp;sysparm_limit=10000&amp;gt;;rel="next",&lt;/TT&gt;&lt;BR /&gt;&lt;TT&gt;{instance}/api/now/table/cmdb_ci?sysparm_offset=40&amp;amp;sysparm_limit=10000&amp;gt;;rel="prev", &lt;/TT&gt;&lt;BR /&gt;&lt;TT&gt;{instance}/api/now/table/cmdb_ci?sysparm_offset=0&amp;amp;sysparm_limit=10000&amp;gt;;rel="first", &lt;/TT&gt;&lt;BR /&gt;&lt;TT&gt;{instance}/api/now/table/cmdb_ci?sysparm_offset=2780&amp;amp;sysparm_limit=10000&amp;gt;;rel="last"&lt;/TT&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;STRONG&gt;Note:&lt;/STRONG&gt; The &lt;TT&gt;sysparm_limit&lt;/TT&gt; parameter defaults to 10,000 records. This limit can be set to any value, however, an unusually large value can impact system performance. &lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;STRONG&gt;X-Total-Count:&lt;/STRONG&gt; The total count of records returned by query.&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; *****************************************************************************************&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 07 Jan 2016 13:37:55 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/want-to-limit-query-to-50-records-at-a-time-while-making-a-get/m-p/1913865#M570791</guid>
      <dc:creator>Chandresh</dc:creator>
      <dc:date>2016-01-07T13:37:55Z</dc:date>
    </item>
    <item>
      <title>Re: Want to limit query to 50 records at a time while making a GET query.</title>
      <link>https://www.servicenow.com/community/developer-forum/want-to-limit-query-to-50-records-at-a-time-while-making-a-get/m-p/1913866#M570792</link>
      <description>&lt;P&gt;Hi Chandresh,&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;I have not tried it yet, but reading from the description what I could make out is like&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;1) rel="next" must be providing you the next set of data , so you might have to use only this method with proper offset and sysparm_limit value&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;2) rel="prev" must be providing you the previous set of data and so on&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;I would strongly suggest to wait for an update from someone else who have actually worked on it OR if it is urgent for you, I would suggest to use "Chrome REST APIs extension" to query against the demo servicenow instance with permutations and combinations to check what does it mean&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;I would use the GET method against Incident table with sysparm_limit of 20 and will set offset limit of 5 &lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 07 Jan 2016 13:54:30 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/want-to-limit-query-to-50-records-at-a-time-while-making-a-get/m-p/1913866#M570792</guid>
      <dc:creator>Deepak Ingale1</dc:creator>
      <dc:date>2016-01-07T13:54:30Z</dc:date>
    </item>
    <item>
      <title>Re: Want to limit query to 50 records at a time while making a GET query.</title>
      <link>https://www.servicenow.com/community/developer-forum/want-to-limit-query-to-50-records-at-a-time-while-making-a-get/m-p/1913867#M570793</link>
      <description>&lt;P&gt;Thank you Deepak for your response, Well I have tried a different way and it is working fine. I have used chooseWindow query method. I have created a processor which I can call and passed the parameters in chooseWindow query method.&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Below is the syntax:&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;SPAN class="mw-headline"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN class="mw-headline"&gt;8.12 chooseWindow(Number f, Number l, Boolean forceCount)&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 08 Jan 2016 08:59:31 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/want-to-limit-query-to-50-records-at-a-time-while-making-a-get/m-p/1913867#M570793</guid>
      <dc:creator>Chandresh</dc:creator>
      <dc:date>2016-01-08T08:59:31Z</dc:date>
    </item>
    <item>
      <title>Re: Want to limit query to 50 records at a time while making a GET query.</title>
      <link>https://www.servicenow.com/community/developer-forum/want-to-limit-query-to-50-records-at-a-time-while-making-a-get/m-p/1913868#M570794</link>
      <description>&lt;P&gt;Right way is to use REST API with sysparm_limit parameter instead of spinning up your own processor. It will give you option to go back and forth in result set using urls provided in Link header&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 29 Jan 2016 22:19:44 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/want-to-limit-query-to-50-records-at-a-time-while-making-a-get/m-p/1913868#M570794</guid>
      <dc:creator>venkata_koya</dc:creator>
      <dc:date>2016-01-29T22:19:44Z</dc:date>
    </item>
    <item>
      <title>Re: Want to limit query to 50 records at a time while making a GET query.</title>
      <link>https://www.servicenow.com/community/developer-forum/want-to-limit-query-to-50-records-at-a-time-while-making-a-get/m-p/1913869#M570795</link>
      <description>&lt;P&gt;Hi Venkata,&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Thank you for your valuable feedback. Here is the scenario.&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;I have a processor which is post, let's say, &amp;nbsp; incidents to incidents table whenever user clicks on My incidents tab in UI interace. We have integrated Service Now with this UI interface.Now initially it should give 30 records and on scrolling down it should give next 30 records and so on. Could you please suggest how to set it up using sys_limit parameter. &lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 02 Feb 2016 05:58:26 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/want-to-limit-query-to-50-records-at-a-time-while-making-a-get/m-p/1913869#M570795</guid>
      <dc:creator>Chandresh</dc:creator>
      <dc:date>2016-02-02T05:58:26Z</dc:date>
    </item>
    <item>
      <title>Re: Want to limit query to 50 records at a time while making a GET query.</title>
      <link>https://www.servicenow.com/community/developer-forum/want-to-limit-query-to-50-records-at-a-time-while-making-a-get/m-p/1913870#M570796</link>
      <description>&lt;P&gt;The idea of having sysparm_limit and link header is exactly to support this scenario. When you make your first call on load of page, you pass sysparm_limit =30 as query parameter.&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;With the response, you will get next, prev link in headers. when ever you scroll down, you make next call to get next 30 records using next and keep going&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;It is recommended to use ORDERBY so you don't get duplicate records because of changes in DataBase plan which might re order results causing duplicates&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;For eg. My initial request for 10 records looks like this&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;A href="https://demonightlyeureka.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on" title="https://demonightlyeureka.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on"&gt;https://instance.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on&lt;/A&gt; &lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Response will have Link header&lt;/P&gt;&lt;BR /&gt;&lt;P class="response-header-name" data-content="Used to express a typed relationship with another resource, where the relation type is defined by RFC 5988" data-original-title="Link" data-placement="right" data-trigger="hover" style="font-weight: bold; color: #333333; margin-right: 0.5rem; font-family: Lato, Helvetica, Arial, sans-serif; font-size: 11.544px;"&gt;Link â†’&lt;/P&gt;&lt;BR /&gt;&lt;P class="response-header-value" style="color: #333333; font-family: Lato, Helvetica, Arial, sans-serif; font-size: 11.544px;"&gt;&amp;lt;&lt;SPAN class="cm-link" style="color: #0088cc; background-position: initial;"&gt;&lt;A title="k-external-small" class="jive-link-external-small" href="https://instance.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on&amp;amp;sysparm_offset=0" rel="nofollow" target="_blank"&gt;https://instance.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on&amp;amp;sysparm_offset=0&lt;/A&gt;&lt;/SPAN&gt;&amp;gt;;rel="first",&lt;/P&gt;&lt;BR /&gt;&lt;P class="response-header-value" style="color: #333333; font-family: Lato, Helvetica, Arial, sans-serif; font-size: 11.544px;"&gt;&amp;lt;&lt;SPAN class="cm-link" style="color: #0088cc; background-position: initial;"&gt;&lt;A title="k-external-small" class="jive-link-external-small" href="https://instance.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on&amp;amp;sysparm_offset=10" rel="nofollow" target="_blank"&gt;https://instance.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on&amp;amp;sysparm_offset=10&lt;/A&gt;&lt;/SPAN&gt;&amp;gt;;rel="next",&lt;/P&gt;&lt;BR /&gt;&lt;P class="response-header-value" style="color: #333333; font-family: Lato, Helvetica, Arial, sans-serif; font-size: 11.544px;"&gt;&amp;lt;&lt;SPAN class="cm-link" style="color: #0088cc; background-position: initial;"&gt;&lt;A title="k-external-small" class="jive-link-external-small" href="https://instance.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on&amp;amp;sysparm_offset=560" rel="nofollow" target="_blank"&gt;https://instance.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on&amp;amp;sysparm_offset=560&lt;/A&gt;&lt;/SPAN&gt;&amp;gt;;rel="last"&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;If you see here there is link for rel=next, which gives you next 10 records. There are libraries out there which can parse this header elegantly to get proper links for next, first,last set of records.&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;In this case, we need to get 'rel=next' link and make subsequent request to get next 10 records&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;A href="https://demonightlyeureka.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on&amp;amp;sysparm_offset=10" title="https://demonightlyeureka.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on&amp;amp;sysparm_offset=10"&gt;https://instance.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on&amp;amp;sysparm_offset=10&lt;/A&gt; &lt;/P&gt;&lt;BR /&gt;&lt;P class="response-header-name" data-content="Used to express a typed relationship with another resource, where the relation type is defined by RFC 5988" data-original-title="Link" data-placement="right" data-trigger="hover" style="font-weight: bold; color: #333333; margin-right: 0.5rem; font-family: Lato, Helvetica, Arial, sans-serif; font-size: 11.544px;"&gt;Response will have another set of headers with again next, prev link to get that set of records&lt;/P&gt;&lt;BR /&gt;&lt;P class="response-header-name" data-content="Used to express a typed relationship with another resource, where the relation type is defined by RFC 5988" data-original-title="Link" data-placement="right" data-trigger="hover" style="font-weight: bold; color: #333333; margin-right: 0.5rem; font-family: Lato, Helvetica, Arial, sans-serif; font-size: 11.544px;"&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P class="response-header-name" data-content="Used to express a typed relationship with another resource, where the relation type is defined by RFC 5988" data-original-title="Link" data-placement="right" data-trigger="hover" style="font-weight: bold; color: #333333; margin-right: 0.5rem; font-family: Lato, Helvetica, Arial, sans-serif; font-size: 11.544px;"&gt;Link â†’&lt;/P&gt;&lt;BR /&gt;&lt;P class="response-header-value" style="color: #333333; font-family: Lato, Helvetica, Arial, sans-serif; font-size: 11.544px;"&gt;&amp;lt;&lt;SPAN class="cm-link" style="color: #0088cc; background-position: initial;"&gt;&lt;A title="k-external-small" class="jive-link-external-small" href="https://instance.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on&amp;amp;sysparm_offset=0" rel="nofollow" target="_blank"&gt;https://instance.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on&amp;amp;sysparm_offset=0&lt;/A&gt;&lt;/SPAN&gt;&amp;gt;;rel="first",&lt;/P&gt;&lt;BR /&gt;&lt;P class="response-header-value" style="color: #333333; font-family: Lato, Helvetica, Arial, sans-serif; font-size: 11.544px;"&gt;&amp;lt;&lt;SPAN class="cm-link" style="color: #0088cc; background-position: initial;"&gt;&lt;A title="k-external-small" class="jive-link-external-small" href="https://instance.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on&amp;amp;sysparm_offset=0" rel="nofollow" target="_blank"&gt;https://instance.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on&amp;amp;sysparm_offset=0&lt;/A&gt;&lt;/SPAN&gt;&amp;gt;;rel="prev",&lt;/P&gt;&lt;BR /&gt;&lt;P class="response-header-value" style="color: #333333; font-family: Lato, Helvetica, Arial, sans-serif; font-size: 11.544px;"&gt;&amp;lt;&lt;SPAN class="cm-link" style="color: #0088cc; background-position: initial;"&gt;&lt;A title="k-external-small" class="jive-link-external-small" href="https://instance.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on&amp;amp;sysparm_offset=20" rel="nofollow" target="_blank"&gt;https://instance.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on&amp;amp;sysparm_offset=20&lt;/A&gt;&lt;/SPAN&gt;&amp;gt;;rel="next",&lt;/P&gt;&lt;BR /&gt;&lt;P class="response-header-value" style="color: #333333; font-family: Lato, Helvetica, Arial, sans-serif; font-size: 11.544px;"&gt;&amp;lt;&lt;SPAN class="cm-link" style="color: #0088cc; background-position: initial;"&gt;&lt;A title="k-external-small" class="jive-link-external-small" href="https://instance.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on&amp;amp;sysparm_offset=560" rel="nofollow" target="_blank"&gt;https://instance.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on&amp;amp;sysparm_offset=560&lt;/A&gt;&lt;/SPAN&gt;&amp;gt;;rel="last"&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 08 Feb 2016 17:49:51 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/want-to-limit-query-to-50-records-at-a-time-while-making-a-get/m-p/1913870#M570796</guid>
      <dc:creator>venkata_koya</dc:creator>
      <dc:date>2016-02-08T17:49:51Z</dc:date>
    </item>
    <item>
      <title>Re: Want to limit query to 50 records at a time while making a GET query.</title>
      <link>https://www.servicenow.com/community/developer-forum/want-to-limit-query-to-50-records-at-a-time-while-making-a-get/m-p/1913871#M570797</link>
      <description>&lt;P&gt;I realize this is a post from a year ago.... but have a question about libraries to parse the header elegantly. Are the libraries referenced (below in bold)... ServiceNow platform libraries or from third party?&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;Response will have Link header&lt;/P&gt;&lt;BR /&gt;&lt;P class="response-header-name" data-content="Used to express a typed relationship with another resource, where the relation type is defined by RFC 5988" data-original-title="Link" data-placement="right" data-trigger="hover" style="margin-right: 0.5rem; font-weight: bold; font-size: 11.544px; font-family: Lato, Helvetica, Arial, sans-serif; color: #333333;"&gt;Link â†’&lt;/P&gt;&lt;BR /&gt;&lt;P class="response-header-value" style="font-size: 11.544px; font-family: Lato, Helvetica, Arial, sans-serif; color: #333333;"&gt;&amp;lt;&lt;SPAN class="cm-link" style="font-weight: inherit; font-style: inherit; font-size: 11.544px; font-family: inherit; color: #0088cc; background-position: initial;"&gt;&lt;A title="" _jive_internal="true" href="https://www.servicenow.com/instance.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on&amp;amp;sysparm_offset=0" rel="nofollow" style="font-weight: inherit; font-style: inherit; font-size: 11.544px; font-family: inherit; color: #3778c7;" target="_blank"&gt;https://instance.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on&amp;amp;sysparm_offset=0&lt;/A&gt;&lt;/SPAN&gt;&amp;gt;;rel="first",&lt;/P&gt;&lt;BR /&gt;&lt;P class="response-header-value" style="font-size: 11.544px; font-family: Lato, Helvetica, Arial, sans-serif; color: #333333;"&gt;&amp;lt;&lt;SPAN class="cm-link" style="font-weight: inherit; font-style: inherit; font-size: 11.544px; font-family: inherit; color: #0088cc; background-position: initial;"&gt;&lt;A title="" _jive_internal="true" href="https://www.servicenow.com/instance.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on&amp;amp;sysparm_offset=10" rel="nofollow" style="font-weight: inherit; font-style: inherit; font-size: 11.544px; font-family: inherit; color: #3778c7;" target="_blank"&gt;https://instance.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on&amp;amp;sysparm_offset=10&lt;/A&gt;&lt;/SPAN&gt;&amp;gt;;rel="next",&lt;/P&gt;&lt;BR /&gt;&lt;P class="response-header-value" style="font-size: 11.544px; font-family: Lato, Helvetica, Arial, sans-serif; color: #333333;"&gt;&amp;lt;&lt;SPAN class="cm-link" style="font-weight: inherit; font-style: inherit; font-size: 11.544px; font-family: inherit; color: #0088cc; background-position: initial;"&gt;&lt;A title="" _jive_internal="true" href="https://www.servicenow.com/instance.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on&amp;amp;sysparm_offset=560" rel="nofollow" style="font-weight: inherit; font-style: inherit; font-size: 11.544px; font-family: inherit; color: #3778c7;" target="_blank"&gt;https://instance.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on&amp;amp;sysparm_offset=560&lt;/A&gt;&lt;/SPAN&gt;&amp;gt;;rel="last"&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;If you see here there is link for rel=next, which gives you next 10 records. &lt;STRONG&gt;There are libraries out there which can parse this header elegantly to get proper links for next,&lt;/STRONG&gt; first,last set of records.&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;In this case, we need to get 'rel=next' link and make subsequent request to get next 10 records&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;&lt;A title="" _jive_internal="true" href="https://demonightlyeureka.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on&amp;amp;sysparm_offset=10" rel="nofollow" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #3778c7;" target="_blank"&gt;https://instance.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on&amp;amp;sysparm_offset=10&lt;/A&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P class="response-header-name" data-content="Used to express a typed relationship with another resource, where the relation type is defined by RFC 5988" data-original-title="Link" data-placement="right" data-trigger="hover" style="margin-right: 0.5rem; font-weight: bold; font-size: 11.544px; font-family: Lato, Helvetica, Arial, sans-serif; color: #333333;"&gt;Response will have another set of headers with again next, prev link to get that set of records&lt;/P&gt;&lt;BR /&gt;&lt;P class="response-header-name" data-content="Used to express a typed relationship with another resource, where the relation type is defined by RFC 5988" data-original-title="Link" data-placement="right" data-trigger="hover"&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P class="response-header-name" data-content="Used to express a typed relationship with another resource, where the relation type is defined by RFC 5988" data-original-title="Link" data-placement="right" data-trigger="hover" style="margin-right: 0.5rem; font-weight: bold; font-size: 11.544px; font-family: Lato, Helvetica, Arial, sans-serif; color: #333333;"&gt;Link â†’&lt;/P&gt;&lt;BR /&gt;&lt;P class="response-header-value" style="font-size: 11.544px; font-family: Lato, Helvetica, Arial, sans-serif; color: #333333;"&gt;&amp;lt;&lt;SPAN class="cm-link" style="font-weight: inherit; font-style: inherit; font-size: 11.544px; font-family: inherit; color: #0088cc; background-position: initial;"&gt;&lt;A title="" _jive_internal="true" href="https://www.servicenow.com/instance.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on&amp;amp;sysparm_offset=0" rel="nofollow" style="font-weight: inherit; font-style: inherit; font-size: 11.544px; font-family: inherit; color: #3778c7;" target="_blank"&gt;https://instance.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on&amp;amp;sysparm_offset=0&lt;/A&gt;&lt;/SPAN&gt;&amp;gt;;rel="first",&lt;/P&gt;&lt;BR /&gt;&lt;P class="response-header-value" style="font-size: 11.544px; font-family: Lato, Helvetica, Arial, sans-serif; color: #333333;"&gt;&amp;lt;&lt;SPAN class="cm-link" style="font-weight: inherit; font-style: inherit; font-size: 11.544px; font-family: inherit; color: #0088cc; background-position: initial;"&gt;&lt;A title="" _jive_internal="true" href="https://www.servicenow.com/instance.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on&amp;amp;sysparm_offset=0" rel="nofollow" style="font-weight: inherit; font-style: inherit; font-size: 11.544px; font-family: inherit; color: #3778c7;" target="_blank"&gt;https://instance.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on&amp;amp;sysparm_offset=0&lt;/A&gt;&lt;/SPAN&gt;&amp;gt;;rel="prev",&lt;/P&gt;&lt;BR /&gt;&lt;P class="response-header-value" style="font-size: 11.544px; font-family: Lato, Helvetica, Arial, sans-serif; color: #333333;"&gt;&amp;lt;&lt;SPAN class="cm-link" style="font-weight: inherit; font-style: inherit; font-size: 11.544px; font-family: inherit; color: #0088cc; background-position: initial;"&gt;&lt;A title="" _jive_internal="true" href="https://www.servicenow.com/instance.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on&amp;amp;sysparm_offset=20" rel="nofollow" style="font-weight: inherit; font-style: inherit; font-size: 11.544px; font-family: inherit; color: #3778c7;" target="_blank"&gt;https://instance.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on&amp;amp;sysparm_offset=20&lt;/A&gt;&lt;/SPAN&gt;&amp;gt;;rel="next",&lt;/P&gt;&lt;BR /&gt;&lt;P class="response-header-value" style="font-size: 11.544px; font-family: Lato, Helvetica, Arial, sans-serif; color: #333333;"&gt;&amp;lt;&lt;SPAN class="cm-link" style="font-weight: inherit; font-style: inherit; font-size: 11.544px; font-family: inherit; color: #0088cc; background-position: initial;"&gt;&lt;A title="" _jive_internal="true" href="https://www.servicenow.com/instance.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on&amp;amp;sysparm_offset=560" rel="nofollow" style="font-weight: inherit; font-style: inherit; font-size: 11.544px; font-family: inherit; color: #3778c7;" target="_blank"&gt;https://instance.service-now.com/api/now/table/sys_user?sysparm_limit=10&amp;amp;sysparm_query=ORDERBYsys_created_on&amp;amp;sysparm_offset=560&lt;/A&gt;&lt;/SPAN&gt;&amp;gt;;rel="last"&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 14 Feb 2017 21:19:05 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/want-to-limit-query-to-50-records-at-a-time-while-making-a-get/m-p/1913871#M570797</guid>
      <dc:creator>mjjit</dc:creator>
      <dc:date>2017-02-14T21:19:05Z</dc:date>
    </item>
    <item>
      <title>Re: Want to limit query to 50 records at a time while making a GET query.</title>
      <link>https://www.servicenow.com/community/developer-forum/want-to-limit-query-to-50-records-at-a-time-while-making-a-get/m-p/1913872#M570798</link>
      <description>&lt;P&gt;Hey, Michael--were you ever able to find a good solution for parsing those link headers? &amp;nbsp; I'm working on a project where I'm having to utilize those and I was wanting to see if anybody had found an easy solution.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 13 Sep 2017 19:27:57 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/want-to-limit-query-to-50-records-at-a-time-while-making-a-get/m-p/1913872#M570798</guid>
      <dc:creator>adambraden</dc:creator>
      <dc:date>2017-09-13T19:27:57Z</dc:date>
    </item>
    <item>
      <title>Re: Want to limit query to 50 records at a time while making a GET query.</title>
      <link>https://www.servicenow.com/community/developer-forum/want-to-limit-query-to-50-records-at-a-time-while-making-a-get/m-p/1913873#M570799</link>
      <description>&lt;P&gt;Hey Adam-No, did not find any libraries (at least not on the platform I could refernce) to parse the response. I played with using regex to parse the responses, but ended up going in a different direction. Somewhat simplier.&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;I ended up writing an initial GET request to the return the count of records by retrieving the header X-Total-Count. &amp;nbsp; Once I had the count, I ran another GET request and iterate through a loop till I had all the records.&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 14 Sep 2017 00:29:18 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/want-to-limit-query-to-50-records-at-a-time-while-making-a-get/m-p/1913873#M570799</guid>
      <dc:creator>mjjit</dc:creator>
      <dc:date>2017-09-14T00:29:18Z</dc:date>
    </item>
    <item>
      <title>Re: Want to limit query to 50 records at a time while making a GET query.</title>
      <link>https://www.servicenow.com/community/developer-forum/want-to-limit-query-to-50-records-at-a-time-while-making-a-get/m-p/1913874#M570800</link>
      <description>&lt;P&gt;Which is the library to get&amp;nbsp;;rel="next", from header?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How can i extract&amp;nbsp;;rel="next", from header response?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jul 2020 10:42:10 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/want-to-limit-query-to-50-records-at-a-time-while-making-a-get/m-p/1913874#M570800</guid>
      <dc:creator>Y_12</dc:creator>
      <dc:date>2020-07-07T10:42:10Z</dc:date>
    </item>
  </channel>
</rss>

