Limit and Offset Example
The following input:
https://localhost/cat/Client?limit=1&offset=1
will produce:
{
"error": 0,
"limit": 1,
"data": [
{
"clientid": 4,
"name": "Minou",
"uname": "2.4.2 (26Jul08) Linux,Cross-compile,Win32",
"autoprune": 1,
"fileretention": 2592000,
"jobretention": 31536000
}
],
"offset": 1
}
which is the same as the second item of the full listing above.
See also
Go back to:
Go back to the Output Data Format chapter.
Go back to the REST API chapter.
Go back to the main Advanced Features Usage page.