> Documentation index: [Saleor](/llms.txt) · [This section](/api-reference/gift-cards/llms.txt)
> Source: https://docs.saleor.io/api-reference/gift-cards/inputs/gift-card-update-input

# GiftCardUpdateInput Input Type

No description

```graphql
input GiftCardUpdateInput {
  addTags: [String!]
  expiryDate: Date
  metadata: [MetadataInput!]
  privateMetadata: [MetadataInput!]
  startDate: Date @deprecated
  endDate: Date @deprecated
  removeTags: [String!]
  balanceAmount: PositiveDecimal
}
```

<a id="fields"></a>

### Fields

<a id="add-tags"></a>

#### [`addTags`](#add-tags) ● [`[String!]`](/api-reference/miscellaneous/scalars/string.md)

The gift card tags to add.

<a id="expiry-date"></a>

#### [`expiryDate`](#expiry-date) ● [`Date`](/api-reference/miscellaneous/scalars/date.md)

The gift card expiry date.

<a id="metadata"></a>

#### [`metadata`](#metadata) ● [`[MetadataInput!]`](/api-reference/miscellaneous/inputs/metadata-input.md)

Gift Card public metadata.

Added in Saleor 3.21. Can be read by any API client authorized to read the object it's attached to.

Warning: never store sensitive information, including financial data such as credit card details.

<a id="private-metadata"></a>

#### [`privateMetadata`](#private-metadata) ● [`[MetadataInput!]`](/api-reference/miscellaneous/inputs/metadata-input.md)

Gift Card private metadata.

Added in Saleor 3.21. Requires permissions to modify and to read the metadata of the object it's attached to.

Warning: never store sensitive information, including financial data such as credit card details.

<a id="remove-tags"></a>

#### [`removeTags`](#remove-tags) ● [`[String!]`](/api-reference/miscellaneous/scalars/string.md)

The gift card tags to remove.

<a id="balance-amount"></a>

#### [`balanceAmount`](#balance-amount) ● [`PositiveDecimal`](/api-reference/miscellaneous/scalars/positive-decimal.md)

The gift card balance amount.

Show deprecatedHide deprecated

<a id="start-date"></a>

#### [`startDate`](#start-date) ● [`Date`](/api-reference/miscellaneous/scalars/date.md)

DEPRECATED

No longer supported

Start date of the gift card in ISO 8601 format.

<a id="end-date"></a>

#### [`endDate`](#end-date) ● [`Date`](/api-reference/miscellaneous/scalars/date.md)

DEPRECATED

Use `expiryDate` from `expirySettings` instead.

End date of the gift card in ISO 8601 format.

<a id="member-of"></a>

### Member Of

[`giftCardUpdate`](/api-reference/gift-cards/mutations/gift-card-update.md) mutation
