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

# Subscription object

Only `Subscriptions` created by Direct Debit merchants can be charged and have status `active`.

```json theme={null}
{
  "id": "sub_m7N9rAWJS9dWDKEe",
  "object": "subscription",
  "account": {
    "id": "acc_nMNejK7BT8oGbvO4",
    "object": "account",
    "balance": {
      "available": 530000,
      "current": 530000,
      "limit": 1530000
    },
    "currency": "CLP",
    "holder_id": "134910798",
    "holder_name": "Jon Snow",
    "institution": {
      "country": "cl",
      "id": "cl_banco_santander",
      "name": "Banco Santander"
    },
    "name": "Cuenta Corriente",
    "number": "9530516286",
    "official_name": "Cuenta Corriente Moneda Local",
    "type": "checking_account"
  },
  "created_at": "2021-11-11T02:29:16Z",
  "mode": "live",
  "reference_id": null,
  "status": "active"
}
```

| Attribute      | Type     | Description                                                                                                                                                                            |
| :------------- | :------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `id`           | `string` | Unique identifier for the Subscription                                                                                                                                                 |
| `object`       | `string` | Identifier for the type of object. Its value for `Subscriptions` will always correspond to `subscription`                                                                              |
| `account`      | `object` | Object pointing to the bank account that can be charged with this subscription                                                                                                         |
| `created_at`   | `string` | `Subscription`'s creation date, using ISO 8601                                                                                                                                         |
| `mode`         | `string` | Indicates whether the `Subscription` is in `live` mode or in `test` mode (for the sandbox)                                                                                             |
| `reference_id` | `string` | Optional ID provided by the merchant which identifies the subscription on the bank's portal. It must have between 1 and 15 characters. If not provided, it defaults to the `holder_id` |
| `status`       | `string` | Subscription status. Can be `pending`, `active` or `canceled`. Only `active` subscriptions can be charged                                                                              |
