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

# giftCardBalanceAdjust Mutation

Adjust a gift card's balance by a delta.

Added in Saleor 3.23.

Requires the MANAGE\_GIFT\_CARD permission.

Triggers the following webhook events:

-   GIFT\_CARD\_UPDATED (async): A gift card was updated.

```graphql
giftCardBalanceAdjust(
  amount: Decimal!
  id: ID!
): GiftCardBalanceAdjust
```

Details

```graphql
type GiftCardBalanceAdjust {
  giftCard: GiftCard
  giftCardErrors: [GiftCardError!]! @deprecated
  errors: [GiftCardError!]!
}
```

<a id="arguments"></a>

### Arguments

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

#### [`amount`](#amount) ● [`Decimal!`](/api-reference/miscellaneous/scalars/decimal.md)

Signed amount to adjust the current balance by. Positive tops up, negative deducts. A deduction below zero clamps the balance to zero. A top-up above the initial balance raises the initial balance to the new current balance.

Added in Saleor 3.23

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

#### [`id`](#id) ● [`ID!`](/api-reference/miscellaneous/scalars/id.md)

ID of the gift card to adjust.

<a id="type"></a>

### Type

<a id="giftcardbalanceadjust"></a>

#### [`GiftCardBalanceAdjust`](/api-reference/gift-cards/objects/gift-card-balance-adjust.md)

Adjust a gift card's balance by a delta.

Added in Saleor 3.23.

Requires the MANAGE\_GIFT\_CARD permission.

Triggers the following webhook events:

-   GIFT\_CARD\_UPDATED (async): A gift card was updated.
