## Pagination
Large lists of items may be returned in pages. The JSON response will contain a key named `count` with a value of the number of objects returned by the entire query. If that number is greater than the number of objects returned by the request, additional objects may be requested by setting the parameter `page`, the parameter `per_page`, or both.
If you would like to start at a specific offset you may alternatively use `limit` and `offset` parameters.  If both `limit` and `offset` are passed then `page` and `per_page` are ignored, otherwise behavior falls back to `page` and `per_page`.
* `page`
  * type: Integer
  * default: 1
* `per_page`
  * type: Integer
  * default: 20
  * maximum: 200
* `usage`
  * workspaces.json?page=2&per_page=15

-or-
* `limit`
  * type: Integer
  * minimum: 1
* `offset`
  * type: Integer
  * minimum: 0
* `usage`
  * workspaces.json?limit=15&offset=10

