> 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-create

# giftCardCreate Mutation

Creates a new gift card.

Requires the MANAGE\_GIFT\_CARD permission.

Triggers the following webhook events:

-   GIFT\_CARD\_CREATED (async): A gift card was created.
-   NOTIFY\_USER (async): A notification for created gift card.

```graphql
giftCardCreate(
  input: GiftCardCreateInput!
): GiftCardCreate
```

Details

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

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

### Arguments

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

#### [`input`](#input) ● [`GiftCardCreateInput!`](/api-reference/gift-cards/inputs/gift-card-create-input.md)

Fields required to create a gift card.

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

### Type

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

#### [`GiftCardCreate`](/api-reference/gift-cards/objects/gift-card-create.md)

Creates a new gift card.

Requires the MANAGE\_GIFT\_CARD permission.

Triggers the following webhook events:

-   GIFT\_CARD\_CREATED (async): A gift card was created.
-   NOTIFY\_USER (async): A notification for created gift card.
