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

Parameters for subscriptions list subscriptions.

# `t`

```elixir
@type t() :: %PolarExpress.Params.SubscriptionsListSubscriptionsParams{
  active: boolean() | nil,
  cancel_at_period_end: boolean() | nil,
  canceled_at_after: String.t() | nil,
  canceled_at_before: String.t() | nil,
  customer_cancellation_reason: map() | nil,
  customer_id: map() | nil,
  discount_id: map() | nil,
  external_customer_id: map() | nil,
  limit: integer() | nil,
  metadata: map() | nil,
  organization_id: map() | nil,
  page: integer() | nil,
  product_id: map() | nil,
  sorting: [map()] | nil
}
```

* `active` - Filter by active or inactive subscription.
* `cancel_at_period_end` - Filter by subscriptions that are set to cancel at period end.
* `canceled_at_after` - Filter by cancellation date (after or equal to).
* `canceled_at_before` - Filter by cancellation date (before or equal to).
* `customer_cancellation_reason` - Filter by customer cancellation reason.
* `customer_id` - Filter by customer ID.
* `discount_id` - Filter by discount ID.
* `external_customer_id` - Filter by customer external ID.
* `limit` - Size of a page, defaults to 10. Maximum is 100.
* `metadata` - Filter by metadata key-value pairs. It uses the `deepObject` style, e.g. `?metadata[key]=value`.
* `organization_id` - Filter by organization ID.
* `page` - Page number, defaults to 1.
* `product_id` - Filter by product ID.
* `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*
