Request

All table APIs accept the following arguments as standard:


**columns array, optional**

If specified, the list of requested columns as an array (for POST) or comma separated list (for GET). If unspecified, default columns are provided. Note some columns may be considered mandatory and cannot be omitted.


**sort string, optional**

If specified and supported, the column to sort by. Format is {column}:{direction}, where direction is either a (for ascending) or d (for descending). E.g. url:a. All tables define their own default order if this is unspecified.


**search string, optional**

If specified, search for this string. Matches will depend upon what columns the table supports searching for, most commonly things like URL or page title.


All tables also support standard pagination arguments.