# Renew card

**PATCH** `/issuing/cards/{card_id}/renew`

Renew a card to extend its expiration date while keeping the same PAN. The card's `sequence_number` is incremented. Only `active` or `paused` cards can be renewed. A card can't be renewed while another card with the same PAN, such as an earlier renewal, isn't deactivated, or if any card with the same PAN was deactivated as `lost`, `stolen`, or `fraud`.

### Path Parameters

- `card_id` `string` _(required)_ — Unique identifier for the card.

### Body Parameters

- `encrypted_pin` `string` — Optional base64-encoded encrypted PIN
- `expiration_month` `integer` — Optional new expiration month (1-12)
- `expiration_year` `integer` — Optional new expiration year (4-digit year, e.g. 2025)
- `status` `string` — Optional status for the renewed card

**Request**

```shell
curl 'https://api.column.com/issuing/cards/<card_id>/renew' \
  -XPATCH \
  -u :<YOUR API KEY> \
  -H 'Content-Type: application/json' \
  -d '{
  "expiration_month": 12,
  "expiration_year": 2029,
  "status": "active"
}'
```

**Response 200**

```json
{
  "authorized_user_entity_id": "enti_2Q1ctiJm1NypVqCt8UBC8e4xTfH",
  "bin": "41234567",
  "card_account_id": "cacc_2x8gszy5folpA9s0TOCseE9ABDM",
  "card_authorization_policy_id": "caup_2x8gszy5folpA9s0TOCseE9ABDM",
  "card_program_id": "cpgm_2x8gszy5folpA9s0TOCseE9ABDM",
  "created_at": "2024-01-15T09:30:00Z",
  "expiration_month": 12,
  "expiration_year": 2029,
  "id": "card_2x8gszy5folpA9s0TOCseE9ABDM",
  "last_four_digits": "1234",
  "platform_id": "plat_2Q1ctiJm1NypVqCt8UBC8e4xTfH",
  "sequence_number": 1,
  "status": "active",
  "type": "physical"
}
```
