> 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-add-note

# giftCardAddNote Mutation

Adds note to the gift card.

Requires the MANAGE\_GIFT\_CARD permission.

Triggers the following webhook events:

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

```graphql
giftCardAddNote(
  id: ID!
  input: GiftCardAddNoteInput!
): GiftCardAddNote
```

Details

```graphql
type GiftCardAddNote {
  giftCard: GiftCard
  event: GiftCardEvent
  errors: [GiftCardError!]!
}
```

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

### Arguments

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

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

ID of the gift card to add a note for.

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

#### [`input`](#input) ● [`GiftCardAddNoteInput!`](/api-reference/gift-cards/inputs/gift-card-add-note-input.md)

Fields required to create a note for the gift card.

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

### Type

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

#### [`GiftCardAddNote`](/api-reference/gift-cards/objects/gift-card-add-note.md)

Adds note to the gift card.

Requires the MANAGE\_GIFT\_CARD permission.

Triggers the following webhook events:

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