> ## Documentation Index
> Fetch the complete documentation index at: https://docs.chargefy.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Evento subscription.resumed

> Evento subscription.resumed.

## Evento `subscription.resumed`

Disparado quando uma `subscription` pausada volta para cobrança normal.
`data.object` carrega o objeto `subscription` completo no estado atual.
`data.previous_attributes` traz os campos alterados com os valores anteriores.

```json theme={}
{
  "id": "evt_123",
  "object": "event",
  "created_at": "2026-05-21T12:00:00Z",
  "data": {
    "object": {
      "id": "sub_123",
      "object": "subscription",
      "billing_cycle_anchor": "2026-05-21T12:00:00Z",
      "billing_mode": {
        "type": "classic"
      },
      "cancel_at": null,
      "cancel_at_period_end": false,
      "canceled_at": null,
      "cancellation_details": {
        "comment": null,
        "feedback": null,
        "reason": null
      },
      "collection_method": "charge_automatically",
      "created_at": "2026-05-13T12:00:00Z",
      "currency": "brl",
      "current_period_end": "2026-06-21T12:00:00Z",
      "current_period_start": "2026-05-21T12:00:00Z",
      "customer": "cus_123",
      "days_until_due": null,
      "default_payment_method": "pm_123",
      "ended_at": null,
      "items": {
        "object": "list",
        "data": [],
        "has_more": false,
        "url": "/v1/subscription-items?subscription=sub_123"
      },
      "latest_invoice": "in_456",
      "livemode": true,
      "metadata": {},
      "next_billing_at": "2026-06-21T12:00:00Z",
      "pause_collection": null,
      "payment_settings": {},
      "pending_setup_intent": null,
      "pending_update": null,
      "start_date": "2026-05-13T12:00:00Z",
      "status": "active",
      "trial_end": "2026-05-20T12:00:00Z",
      "trial_settings": {
        "end_behavior": {
          "missing_payment_method": "pause"
        }
      },
      "trial_start": "2026-05-13T12:00:00Z",
      "updated_at": "2026-05-21T12:00:00Z"
    },
    "previous_attributes": {
      "default_payment_method": null,
      "status": "paused",
      "updated_at": "2026-05-20T12:00:00Z"
    }
  },
  "livemode": true,
  "organization": "org_123",
  "type": "subscription.resumed"
}
```
