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

Parameters for custom fields list custom fields.

# `t`

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

* `limit` - Size of a page, defaults to 10. Maximum is 100.
* `organization_id` - Filter by organization ID.
* `page` - Page number, defaults to 1.
* `query` - Filter by custom field name or 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.
* `type` - Filter by custom field type.

---

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