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

# Disable Gift Card

> Disable a gift card

## Path Parameters

<ParamField path="gift_card_id" type="string" required>
  The gift card ID
</ParamField>

## Response

<ResponseExample>
  ```json theme={null}
  {
    "status": 200,
    "state": "success",
    "message": null,
    "data": {
      "gift_card": {
        "id": "5c1b8a7d-2e3f-4a9b-8c6d-1f2e3a4b5c6d",
        "gift_card_id": "5c1b8a7d-2e3f-4a9b-8c6d-1f2e3a4b5c6d",
        "code": "GIFT-WXYZ-5678-ABCD",
        "initial_value": 100,
        "balance": 100,
        "currency": "USD",
        "enabled": false,
        "disabled_at": "2024-01-25T10:00:00.000Z",
        "starts_at": "2024-01-20T14:30:00.000Z",
        "expires_on": null,
        "customer_id": "cust_xyz789",
        "order_id": null,
        "note": null,
        "created_at": "2024-01-20T14:30:00.000Z",
        "updated_at": "2024-01-25T10:00:00.000Z"
      }
    }
  }
  ```
</ResponseExample>
