# Action can't be performed on paused subscription

The action or change you are performing can't be performed on a paused subscription

---

## Example

```json
{
  "error": {
    "type": "request_error",
    "code": "subscription_cannot_be_paused",
    "detail": "cannot perform action on paused subscription",
    "documentation_url": "https://developer.paddle.com/errors/subscriptions/subscription_cannot_be_paused"
  },
  "meta": {
    "request_id": "00000000-0000-0000-0000-000000000000"
  }
}
```

## Details

| Attribute | Value |
| --- | --- |
| Status code | 400 |
| Error code | `subscription_cannot_be_paused` |
| Error message | cannot perform action on paused subscription |

## Common causes

- You're trying to perform an action on a paused subscription.

## Common solutions

- Resume the subscription using the [resume a subscription operation](https://developer.paddle.com/api-reference/subscriptions/resume-subscription), then make your request again.
