PageSize

Top  Previous  Next

In order to support additional pages for large result sets, all web portal API methods support the concept of pagesize and page. When using the pagesize parameter, an additional XML Namespace is returned named Page.

 

Example usage. If the page parameter is omitted page=0 is assumed.

 

http://www.alstracker.dnsalias.com/aldesk/als_get_vendors.cgi?pagesize=5

 

<root>

<Page PageSize="5" RowCount="446" PageCount="89"/>

<vendors>

<row code="470" name=" Massage Therapy Network"/>

<row code="366" name="A Hint of Hawaii"/>

<row code="395" name="A Na Pali Eco Adventures"/>

<row code="535" name="A1testing"/>

<row code="403" name="AAA Diving"/>

</vendors>

</root>

 

 

Element

Description

Inputs

PageSize

the number of items

pagesize=5

Page

the ordinal of the page requested. Zero based.

page=4

PageCount

the number of total pages available

Output Only

RowCount

Total number of items available

Output Only