# Updates a gift card

```
PUT https://{store_name}.myshopify.com/apps/gcf/api/gift_card/{gift_card_id}
```

Following paramters might be included in body of your request to update existing gift card

* `disable` - set to true if you want to disable gift card
* `balance` - new gift card balance
* `expires_on` - new expiry date of a gift card
* `note` - new internal note, not visible to customers

Response:

```json
HTTP/1.1 200 OK
{
  "gift_card": {
    "id": 634370326821,
    "balance": "4.0",
    "created_at": "2025-08-15T12:37:38Z",
    "currency": "AUD",
    "initial_value": "15.00",
    "disabled_at": null,
    "line_item_id": null,
    "api_client_id": null,
    "user_id": null,
    "customer_id": 9042221203749,
    "customer_email": "customer@test.com",
    "recipient_id": null,
    "recipient_email": null,
    "note": null,
    "expires_on": "2025-10-10",
    "message": null,
    "last_characters": "262f",
    "order_id": null
  }
}
```
