The documentation talks about how to fetch the next 50 records when downloading a table that has more than 50 records. "Use the links in the response (rel="next") to retrieve additioyeahnal pages of list members."
Here are three lines from my returned xml that contains the first 50 records. I'm a little confused because the first line already has "rel=next". However, resubmitting this xml simply returns the exact same list.
<link href="/ws/customers/(accountname)/lists/7/members?next=g1wjo9oj-89myfc" rel="next"></link>
<link href="/ws/customers/(accountname)/lists/7/members" rel="first"></link>
<link href="/ws/customers/(accountname)/lists/7/members" rel="current"></link>
My question is, to obtain the next 50 records, what exactly am I changing in the xml here and how should the xml look to successfully obtain the next 50 records?
Thanks,
Chris Campbell
Okay, the fog has lifted and so has my confusion. My problem was that I didn't understand how to use link node and I was heading in a completely wrong direction with it. All is right with the world now.
Thanks.
Chris