# SubscriptionStatus

The status of the subscription.

* `PENDING` - Created but waiting for initial payment or activation.
* `EXPIRED` - Reached its end date or maximum number of attempts without successful payment.
* `TRIALING` - In trial period before the first payment is required.
* `ACTIVE` - Currently active and payments are being processed normally.
* `PAST_DUE` - Most recent payment attempt failed; will retry according to schedule.
* `PAUSED` - Temporarily suspended; will resume based on pause settings.
* `CANCELED` - Permanently terminated; will not process further payments.

```
enum SubscriptionStatus {

  PENDING

  EXPIRED

  TRIALING

  ACTIVE

  PAST_DUE

  PAUSED

  CANCELED

}
```

### Values[​](#values "Direct link to Values")

#### [`SubscriptionStatus.PENDING`](#pending)[​](#pending "Direct link to pending")

#### [`SubscriptionStatus.EXPIRED`](#expired)[​](#expired "Direct link to expired")

#### [`SubscriptionStatus.TRIALING`](#trialing)[​](#trialing "Direct link to trialing")

#### [`SubscriptionStatus.ACTIVE`](#active)[​](#active "Direct link to active")

#### [`SubscriptionStatus.PAST_DUE`](#past-due)[​](#past-due "Direct link to past-due")

#### [`SubscriptionStatus.PAUSED`](#paused)[​](#paused "Direct link to paused")

#### [`SubscriptionStatus.CANCELED`](#canceled)[​](#canceled "Direct link to canceled")

### Member Of[​](#member-of "Direct link to Member Of")

[`Subscription`](https://docs.monei.com/apis/graphql/types/objects/subscription/.md) object ● [`SubscriptionEventObject`](https://docs.monei.com/apis/graphql/types/objects/subscription-event-object/.md) object
