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.

Go back to: Output Data Format.