# `PolarExpress.Params.OrganizationsListOrganizationsParams`
[🔗](https://github.com/jeffhuen/polar_express/blob/main/lib/polar_express/params/organizations_list_organizations_params.ex#L2)

Parameters for organizations list organizations.

# `t`

```elixir
@type t() :: %PolarExpress.Params.OrganizationsListOrganizationsParams{
  limit: integer() | nil,
  page: integer() | nil,
  slug: String.t() | nil,
  sorting: [map()] | nil
}
```

* `limit` - Size of a page, defaults to 10. Maximum is 100.
* `page` - Page number, defaults to 1.
* `slug` - Filter by slug.
* `sorting` - Sorting criterion. Several criteria can be used simultaneously and will be applied in order. Add a minus sign `-` before the criteria name to sort by descending order.

---

*Consult [api-reference.md](api-reference.md) for complete listing*
